|
|
@@ -563,13 +563,7 @@ public class StockInBindActivity extends BaseActivity {
|
|
|
}
|
|
|
|
|
|
private void bindAreaCode(String barcode){
|
|
|
- BigDecimal inQty = calculateQty();
|
|
|
- BigDecimal reQty = new BigDecimal(lineModel.getQuantity()).subtract(inQty);
|
|
|
- String total = reQty.toString();
|
|
|
- if(reQty.compareTo(BigDecimal.ZERO) <= 0){
|
|
|
- ToastUtils.showToast(context, "入库单数量已全部完成");
|
|
|
- return;
|
|
|
- }
|
|
|
+ String total = "0";
|
|
|
for (View view:itemAreaView){
|
|
|
EditText areaCodeET = view.findViewById(R.id.et_areaCode);
|
|
|
EditText qtyET = view.findViewById(R.id.et_qty);
|