| | |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.Iterator; |
| | | import java.util.List; |
| | | import java.math.BigDecimal; |
| | | import java.util.*; |
| | | |
| | | /** |
| | | * 移动端服务核心类 |
| | |
| | | } |
| | | Double anfme = orderDetl.getAnfme(); |
| | | Double workQty = orderDetl.getWorkQty(); |
| | | if ( anfme - (workQty+combMat.getAnfme()) < 0) { |
| | | BigDecimal a1 = new BigDecimal(orderDetl.getAnfme()); |
| | | BigDecimal b1 = new BigDecimal(orderDetl.getWorkQty()); |
| | | BigDecimal c1 = new BigDecimal(combMat.getAnfme()); |
| | | double e1 = b1.add(c1).doubleValue(); |
| | | BigDecimal f1 = new BigDecimal(e1); |
| | | Double d1 = a1.subtract(f1).doubleValue(); |
| | | if ( d1 < 0.0) { |
| | | throw new CoolException("组托数量已超出订单需求量,请检查是否有其他的组托已完成"); |
| | | } |
| | | } |
| | |
| | | // if (jsonOrderDetl.getAnfme() > manPakOut.getAnfme()) { //判断工作数量是否大于拣货单的数量 |
| | | // return R.error("出库数量大于拣货单总数量"); |
| | | // } |
| | | if (jsonOrderDetl.getAnfme() > (manPakOut.getAnfme()-manPakOut.getCount())) { //判断工作数量是否大于拣货单剩余可出的数量 |
| | | BigDecimal a1 = new BigDecimal(manPakOut.getAnfme()); |
| | | BigDecimal b1 = new BigDecimal(manPakOut.getCount()); |
| | | Double c1 = a1.subtract(b1).doubleValue(); |
| | | if (jsonOrderDetl.getAnfme() > c1) { //判断工作数量是否大于拣货单剩余可出的数量 |
| | | return R.error("出库数量大于拣货单剩余可出数量"); |
| | | } |
| | | if (orderDetl.getWorkQty() - orderDetl.getQty() <jsonOrderDetl.getAnfme() ){ |
| | | |
| | | BigDecimal e1 = new BigDecimal(orderDetl.getWorkQty()); |
| | | BigDecimal f1 = new BigDecimal(orderDetl.getQty()); |
| | | Double g1 = e1.subtract(f1).doubleValue(); |
| | | if ( g1 <jsonOrderDetl.getAnfme() ){ |
| | | return R.error("出库数量大于单据剩余可出数量"); |
| | | } |
| | | //查询平库中是否有一样的物料号 |
| | |
| | | if(jsonOrderDetl.getWeight() == null){ |
| | | jsonOrderDetl.setWeight(0.0); |
| | | } |
| | | Double finalQty = checkManLocDetl.getAnfme() - jsonOrderDetl.getAnfme(); |
| | | Double weight = checkManLocDetl.getWeight() - jsonOrderDetl.getWeight(); |
| | | Double finalQty = new BigDecimal(checkManLocDetl.getAnfme()).subtract(new BigDecimal(jsonOrderDetl.getAnfme())).doubleValue() ; |
| | | Double weight = new BigDecimal(checkManLocDetl.getWeight()).subtract(new BigDecimal(jsonOrderDetl.getWeight())).doubleValue() ; |
| | | checkManLocDetl.setAnfme(finalQty); |
| | | checkManLocDetl.setWeight(weight); |
| | | if (weight < 0){ |
| | |
| | | return R.error("修改平库物料失败!"); |
| | | } |
| | | } |
| | | orderDetl.setQty(orderDetl.getQty() + jsonOrderDetl.getAnfme()); |
| | | orderDetl.setQty( new BigDecimal(orderDetl.getQty()).add(new BigDecimal(jsonOrderDetl.getAnfme())).doubleValue() ); |
| | | orderDetl.setUpdateTime(date); |
| | | orderDetlService.updateById(orderDetl); |
| | | //更新订单状态 |
| | |
| | | boolean log=true; |
| | | for (OrderDetl orderDetl1: orderDetls) { |
| | | //工作中的数量小于总订单数时,订单状态改为2,作业中 |
| | | if(orderDetl1.getQty() < orderDetl.getAnfme()){ |
| | | if(orderDetl1.getQty() < orderDetl1.getAnfme()){ |
| | | log=false; |
| | | } |
| | | } |
| | |
| | | if(manPakOut.getCount() == null){ |
| | | manPakOut.setCount(0.0); |
| | | } |
| | | manPakOut.setCount(manPakOut.getCount()+jsonOrderDetl.getAnfme().intValue()); |
| | | |
| | | manPakOut.setCount(new BigDecimal(manPakOut.getCount()).add(new BigDecimal(jsonOrderDetl.getAnfme())).doubleValue()); |
| | | if (!manPakOutService.update(manPakOut,manPakOutEntityWrapper)){ |
| | | return R.error("更新拣货单完成数目失败"); |
| | | } |
| | | if (manPakOut.getAnfme().intValue() == manPakOut.getCount()){ |
| | | if (manPakOut.getAnfme().equals(manPakOut.getCount())){ |
| | | manPakOut.setStatus(1); |
| | | if (!manPakOutService.update(manPakOut,manPakOutEntityWrapper)){ |
| | | return R.error("更新拣货单状态失败"); |
| | |
| | | List<WaitPakin> waitPakins = waitPakinService.selectList(new EntityWrapper<WaitPakin>().eq("zpallet", jsonBarNo)); //获取对应组托信息 |
| | | if (Cools.isEmpty(waitPakins)){ |
| | | return R.error("未查询到组托"); |
| | | } else if (waitPakins.get(0).getIoStatus() == "Y") { |
| | | } else if (waitPakins.get(0).getIoStatus().equals("Y")) { |
| | | return R.error("组托已经生成工作档"); |
| | | } |
| | | |
| | | for (WaitPakin waitPakin: waitPakins) { |
| | | List<ManLocDetl> manLocDetls = manLocDetlService.selectList(new EntityWrapper<ManLocDetl>().eq("zpallet", waitPakin.getZpallet())); |
| | | if (!Cools.isEmpty(manLocDetls) || manLocDetls.size()>0){ |
| | | return R.error("所在库位已存在明细"); |
| | | } |
| | | } |
| | | //判断订单是否完成 |
| | | boolean log =true; |
| | |
| | | waitPakinLog.setZpallet(waitPakin.getZpallet()); |
| | | waitPakinLog.setAnfme(waitPakin.getAnfme()); |
| | | waitPakinLog.setMatnr(waitPakin.getMatnr()); |
| | | waitPakinLog.setLocNo(waitPakin.getLocNo()); |
| | | waitPakinLog.setLocNo(jsonLocNo); |
| | | waitPakinLog.setMaktx(waitPakin.getMaktx()); |
| | | waitPakinLog.setOrderNo(waitPakin.getOrderNo()); |
| | | waitPakinLog.setWeight(waitPakin.getWeight()); |