| | |
| | | if (pickUpQuantity === undefined || pickUpQuantity === null || pickUpQuantity === ''){ |
| | | return Feng.error('限领数量不能为空!'); |
| | | } |
| | | let quantityHas = $("#quantityHas").val(); |
| | | if (quantityIssued <= quantityHas){ |
| | | return Feng.error('发放数量小于已领数量!'); |
| | | } |
| | | let nums = $("#nums").val(); |
| | | if (quantityIssued <= nums){ |
| | | return Feng.error('发放数量小于已领数量!'); |
| | | } |
| | | |
| | | // |
| | | // let quantityHas = $("#quantityHas").val(); |
| | | // if (quantityIssued <= quantityHas){ |
| | | // return Feng.error('发放数量小于已领数量!'); |
| | | // } |
| | | // let nums = $("#nums").val(); |
| | | // if (quantityIssued <= nums){ |
| | | // return Feng.error('发放数量小于已领数量!'); |
| | | // } |
| | | |
| | | |
| | | |