Commit bc505004d697c05a5ab095b4da9505a56c3379e4

Authored by 李泰瑜
1 parent 4138aa95

盘点完成调整库存 生成交易记录

ant-design-vue-jeecg/src/components/jeecgbiz/JButtonBizComponent/JSelectBizComponentModal.vue
@@ -189,7 +189,7 @@ export default { @@ -189,7 +189,7 @@ export default {
189 // 表头 189 // 表头
190 innerColumns() { 190 innerColumns() {
191 let columns = cloneDeep(this.columns) 191 let columns = cloneDeep(this.columns)
192 - debugger 192 +
193 columns.forEach(column => { 193 columns.forEach(column => {
194 // 给所有的列加上过长裁剪 194 // 给所有的列加上过长裁剪
195 if (this.ellipsisLength !== -1) { 195 if (this.ellipsisLength !== -1) {
ant-design-vue-jeecg/src/views/system/stocktaking/modules/AdjustmentDocModal.vue
  1 +<script src="../../../../components/jeecgbiz/JButtonBizComponent/util.js"></script>
1 <template> 2 <template>
2 <j-modal 3 <j-modal
3 :title="title" 4 :title="title"
@@ -26,6 +27,7 @@ @@ -26,6 +27,7 @@
26 27
27 import {createManyEmptyIn} from '@/api/api' 28 import {createManyEmptyIn} from '@/api/api'
28 import {confirmGapQty} from "../../../../api/api"; 29 import {confirmGapQty} from "../../../../api/api";
  30 +import Utils from '../../../../components/jeecgbiz/JButtonBizComponent/util.js';
29 31
30 export default { 32 export default {
31 name: "AdjustmentDocModal", 33 name: "AdjustmentDocModal",
@@ -95,6 +97,7 @@ export default { @@ -95,6 +97,7 @@ export default {
95 that.$emit('ok'); 97 that.$emit('ok');
96 that.model.containerCode = ''; 98 that.model.containerCode = '';
97 that.model.toLocationCode = ''; 99 that.model.toLocationCode = '';
  100 + Utils.$emit('methodB',res.result);
98 } else { 101 } else {
99 that.$message.warning(res.message); 102 that.$message.warning(res.message);
100 } 103 }
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/stocktaking/cycleCountDetail/entity/CycleCountDetail.java
@@ -2,6 +2,7 @@ package org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity; @@ -2,6 +2,7 @@ package org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 import java.io.UnsupportedEncodingException; 4 import java.io.UnsupportedEncodingException;
  5 +import java.math.BigDecimal;
5 import java.util.Date; 6 import java.util.Date;
6 import com.baomidou.mybatisplus.annotation.IdType; 7 import com.baomidou.mybatisplus.annotation.IdType;
7 import com.baomidou.mybatisplus.annotation.TableId; 8 import com.baomidou.mybatisplus.annotation.TableId;
@@ -74,15 +75,15 @@ public class CycleCountDetail implements Serializable { @@ -74,15 +75,15 @@ public class CycleCountDetail implements Serializable {
74 /**系统数量*/ 75 /**系统数量*/
75 @Excel(name = "系统数量", width = 15) 76 @Excel(name = "系统数量", width = 15)
76 @ApiModelProperty(value = "系统数量") 77 @ApiModelProperty(value = "系统数量")
77 - private Integer systemQty; 78 + private BigDecimal systemQty;
78 /**实盘数量*/ 79 /**实盘数量*/
79 @Excel(name = "实盘数量", width = 15) 80 @Excel(name = "实盘数量", width = 15)
80 @ApiModelProperty(value = "实盘数量") 81 @ApiModelProperty(value = "实盘数量")
81 - private Integer countedQty; 82 + private BigDecimal countedQty;
82 /**差异数量*/ 83 /**差异数量*/
83 @Excel(name = "差异数量", width = 15) 84 @Excel(name = "差异数量", width = 15)
84 @ApiModelProperty(value = "差异数量") 85 @ApiModelProperty(value = "差异数量")
85 - private Integer gapQty; 86 + private BigDecimal gapQty;
86 /**失败原因*/ 87 /**失败原因*/
87 @Excel(name = "失败原因", width = 15) 88 @Excel(name = "失败原因", width = 15)
88 @ApiModelProperty(value = "失败原因") 89 @ApiModelProperty(value = "失败原因")
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/stocktaking/cycleCountDetail/service/impl/CycleCountDetailChildServiceImpl.java
@@ -2,7 +2,10 @@ package org.jeecg.modules.wms.stocktaking.cycleCountDetail.service.impl; @@ -2,7 +2,10 @@ package org.jeecg.modules.wms.stocktaking.cycleCountDetail.service.impl;
2 2
3 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; 3 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
4 import com.baomidou.mybatisplus.core.toolkit.Wrappers; 4 import com.baomidou.mybatisplus.core.toolkit.Wrappers;
  5 +import org.apache.shiro.SecurityUtils;
5 import org.jeecg.common.api.vo.Result; 6 import org.jeecg.common.api.vo.Result;
  7 +import org.jeecg.common.system.vo.LoginUser;
  8 +import org.jeecg.modules.system.entity.SysThirdAccount;
6 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity.CycleCountDetail; 9 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity.CycleCountDetail;
7 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity.CycleCountDetailChild; 10 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.entity.CycleCountDetailChild;
8 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.mapper.CycleCountDetailChildMapper; 11 import org.jeecg.modules.wms.stocktaking.cycleCountDetail.mapper.CycleCountDetailChildMapper;
@@ -51,29 +54,53 @@ public class CycleCountDetailChildServiceImpl extends ServiceImpl&lt;CycleCountDeta @@ -51,29 +54,53 @@ public class CycleCountDetailChildServiceImpl extends ServiceImpl&lt;CycleCountDeta
51 if(StringUtils.isNull(countDetailChild)){ 54 if(StringUtils.isNull(countDetailChild)){
52 return Result.error("明细子单不存在!"); 55 return Result.error("明细子单不存在!");
53 } 56 }
  57 +
  58 +
  59 +
54 CycleCountDetail cycleCountDetail = cycleCountDetailService.getById(countDetailChild.getCycleCountDetailid()); 60 CycleCountDetail cycleCountDetail = cycleCountDetailService.getById(countDetailChild.getCycleCountDetailid());
55 if(StringUtils.isNull(cycleCountDetail)){ 61 if(StringUtils.isNull(cycleCountDetail)){
56 return Result.error("盘点明细不存在。"); 62 return Result.error("盘点明细不存在。");
57 } 63 }
58 //任务完成后再实盘登记 64 //任务完成后再实盘登记
59 - /* if(countDetailChild.getChildStatus() < QuantityConstant.CYCLECOUNT_STATUS_EXECUTING){  
60 - return AjaxResult.error("盘点任务未执行不能登记数量!");  
61 - }*/ 65 +// if(countDetailChild.getChildStatus() < QuantityConstant.CYCLECOUNT_STATUS_EXECUTING){
  66 +// return AjaxResult.error("盘点任务未执行不能登记数量!");
  67 +// }
62 68
63 if(countDetailChild.getChildStatus() >= QuantityConstant.CYCLECOUNT_STATUS_COMPLETED){ 69 if(countDetailChild.getChildStatus() >= QuantityConstant.CYCLECOUNT_STATUS_COMPLETED){
64 return Result.error("盘点任务完成后不能再登记数量!"); 70 return Result.error("盘点任务完成后不能再登记数量!");
65 } 71 }
  72 +
  73 +
66 //实盘登记后差异数量 74 //实盘登记后差异数量
67 BigDecimal adjQty = qty.subtract(countDetailChild.getSystemQty()); 75 BigDecimal adjQty = qty.subtract(countDetailChild.getSystemQty());
68 countDetailChild.setGapQty(adjQty); 76 countDetailChild.setGapQty(adjQty);
69 countDetailChild.setCountedQty(qty); 77 countDetailChild.setCountedQty(qty);
70 countDetailChild.setChildStatus(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED); 78 countDetailChild.setChildStatus(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED);
71 -// countDetailChild.setCountedBy(ShiroUtils.getLoginName());  
72 this.updateById(countDetailChild); 79 this.updateById(countDetailChild);
  80 +
  81 +
  82 +
  83 + LambdaQueryWrapper<CycleCountDetailChild> cycleCountDetailChildLambdaQueryWrapper = new LambdaQueryWrapper<>();
  84 + cycleCountDetailChildLambdaQueryWrapper.eq(CycleCountDetailChild::getCycleCountDetailid,cycleCountDetail.getId());
  85 + List<CycleCountDetailChild> cycleCountDetailChildren = this.list(cycleCountDetailChildLambdaQueryWrapper);
  86 +
  87 + BigDecimal counted_qty=new BigDecimal(0);
  88 + BigDecimal ystem_qty=new BigDecimal(0);
  89 + BigDecimal gap_qty=new BigDecimal(0);
  90 + for(CycleCountDetailChild cycleCountDetailChild:cycleCountDetailChildren)
  91 + {
  92 + counted_qty=counted_qty.add(cycleCountDetailChild.getCountedQty());
  93 + ystem_qty=ystem_qty.add(cycleCountDetailChild.getSystemQty());
  94 + gap_qty=gap_qty.add(cycleCountDetailChild.getGapQty());
  95 + }
73 //修改明细单状态 96 //修改明细单状态
74 cycleCountDetail.setEnableStatus(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED); 97 cycleCountDetail.setEnableStatus(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED);
75 - cycleCountDetailService.updateById(cycleCountDetail); 98 + cycleCountDetail.setCountedQty(counted_qty);
  99 + cycleCountDetail.setSystemQty(ystem_qty);
  100 + cycleCountDetail.setGapQty(gap_qty);
76 101
  102 + cycleCountDetailService.updateById(cycleCountDetail);
  103 + LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
77 //修改主单状态 104 //修改主单状态
78 CycleCountHeader tmp = new CycleCountHeader(); 105 CycleCountHeader tmp = new CycleCountHeader();
79 tmp.setCode(countDetailChild.getCyclecountheadcode()); 106 tmp.setCode(countDetailChild.getCyclecountheadcode());
@@ -81,8 +108,12 @@ public class CycleCountDetailChildServiceImpl extends ServiceImpl&lt;CycleCountDeta @@ -81,8 +108,12 @@ public class CycleCountDetailChildServiceImpl extends ServiceImpl&lt;CycleCountDeta
81 LambdaQueryWrapper<CycleCountHeader> lambdaQueryWrapper = Wrappers.lambdaQuery(tmp); 108 LambdaQueryWrapper<CycleCountHeader> lambdaQueryWrapper = Wrappers.lambdaQuery(tmp);
82 CycleCountHeader cycleCountHeader = cycleCountHeaderService.getOne(lambdaQueryWrapper); 109 CycleCountHeader cycleCountHeader = cycleCountHeaderService.getOne(lambdaQueryWrapper);
83 cycleCountHeader.setStatusCyc(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED); 110 cycleCountHeader.setStatusCyc(QuantityConstant.CYCLECOUNT_STATUS_REGISTERED);
84 -// cycleCountHeaderService.updataHeaderStatus(cycleCountHeader.getCode()); 111 + cycleCountHeader.setStocktakingAc(sysUser.getUsername());
85 112
86 - return Result.ok("调整成功"); 113 + Result result = new Result();
  114 + result.setCode(200);
  115 + result.setMessage("调整成功");
  116 + result.setResult(cycleCountHeader.getId());
  117 + return result;
87 } 118 }
88 } 119 }
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/stocktaking/cycleCountDetail/service/impl/CycleCountDetailServiceImpl.java
@@ -119,17 +119,14 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap @@ -119,17 +119,14 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap
119 inventoryDetailLambdaQueryWrapper.eq(InventoryDetail::getInventoryHeaderId,taskId); 119 inventoryDetailLambdaQueryWrapper.eq(InventoryDetail::getInventoryHeaderId,taskId);
120 List<InventoryDetail> inventoryDetails = inventoryDetailService.list(inventoryDetailLambdaQueryWrapper); 120 List<InventoryDetail> inventoryDetails = inventoryDetailService.list(inventoryDetailLambdaQueryWrapper);
121 121
122 - LambdaQueryWrapper<Location> locationLambdaQueryWrapper = Wrappers.lambdaQuery();  
123 - locationLambdaQueryWrapper.eq(Location::getCode, inventoryDetails.get(0).getLocationCode())  
124 - .eq(Location::getWarehouseCode, inventoryDetails.get(0).getWarehouseCode())  
125 - .ne(Location::getStatus, QuantityConstant.STATUS_LOCATION_LOCK);  
126 - Location location = locationService.getOne(locationLambdaQueryWrapper);  
127 - if (StringUtils.isNull(location)) {  
128 - return Result.error("库位已锁定!");  
129 - }  
130 -  
131 - LambdaQueryWrapper<CycleCountDetail> cycleCountDetailLambdaQueryWrapper = Wrappers.lambdaQuery();  
132 - 122 +// LambdaQueryWrapper<Location> locationLambdaQueryWrapper = Wrappers.lambdaQuery();
  123 +// locationLambdaQueryWrapper.eq(Location::getCode, inventoryDetails.get(0).getLocationCode())
  124 +// .eq(Location::getWarehouseCode, inventoryDetails.get(0).getWarehouseCode())
  125 +// .ne(Location::getStatus, QuantityConstant.STATUS_LOCATION_LOCK);
  126 +// Location location = locationService.getOne(locationLambdaQueryWrapper);
  127 +// if (StringUtils.isNull(location)) {
  128 +// return Result.error("库位已锁定!");
  129 +// }
133 130
134 CycleCountDetail cycleCountDetail = new CycleCountDetail(); 131 CycleCountDetail cycleCountDetail = new CycleCountDetail();
135 cycleCountDetail.setCycleCountHeadId(headerId); 132 cycleCountDetail.setCycleCountHeadId(headerId);
@@ -143,9 +140,9 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap @@ -143,9 +140,9 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap
143 cycleCountDetail.setInventoryHeaderId(inventoryDetails.get(0).getInventoryHeaderId()); 140 cycleCountDetail.setInventoryHeaderId(inventoryDetails.get(0).getInventoryHeaderId());
144 cycleCountDetail.setLocationCode(inventoryDetails.get(0).getLocationCode()); 141 cycleCountDetail.setLocationCode(inventoryDetails.get(0).getLocationCode());
145 cycleCountDetail.setInventorySts(inventoryDetails.get(0).getInventoryStatus()); 142 cycleCountDetail.setInventorySts(inventoryDetails.get(0).getInventoryStatus());
146 - cycleCountDetail.setSystemQty(inventoryDetails.size());  
147 - cycleCountDetail.setCountedQty(0);  
148 - cycleCountDetail.setGapQty(0); 143 + cycleCountDetail.setSystemQty(BigDecimal.ZERO);
  144 + cycleCountDetail.setCountedQty(BigDecimal.ZERO);
  145 + cycleCountDetail.setGapQty(BigDecimal.ZERO);
149 cycleCountDetail.setEnableStatus(QuantityConstant.CYCLECOUNT_STATUS_BUILD); 146 cycleCountDetail.setEnableStatus(QuantityConstant.CYCLECOUNT_STATUS_BUILD);
150 this.save(cycleCountDetail); 147 this.save(cycleCountDetail);
151 148
@@ -293,6 +290,7 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap @@ -293,6 +290,7 @@ public class CycleCountDetailServiceImpl extends ServiceImpl&lt;CycleCountDetailMap
293 result.setCode(200); 290 result.setCode(200);
294 result.setMessage("盘点任务生成成功"); 291 result.setMessage("盘点任务生成成功");
295 292
  293 +
296 return result; 294 return result;
297 } 295 }
298 296
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/stocktaking/cycleCountHeader/entity/CycleCountHeader.java
@@ -75,7 +75,7 @@ public class CycleCountHeader implements Serializable { @@ -75,7 +75,7 @@ public class CycleCountHeader implements Serializable {
75 /**总物料数*/ 75 /**总物料数*/
76 @Excel(name = "总物料数", width = 15) 76 @Excel(name = "总物料数", width = 15)
77 @ApiModelProperty(value = "总物料数") 77 @ApiModelProperty(value = "总物料数")
78 - private Integer totalItems; 78 + private BigDecimal totalItems;
79 /**审核人*/ 79 /**审核人*/
80 @Excel(name = "审核人", width = 15) 80 @Excel(name = "审核人", width = 15)
81 @ApiModelProperty(value = "审核人") 81 @ApiModelProperty(value = "审核人")
huaheng-wms-core/src/main/java/org/jeecg/modules/wms/task/taskHeader/service/impl/TaskHeaderServiceImpl.java
@@ -11,6 +11,7 @@ import java.util.stream.Collectors; @@ -11,6 +11,7 @@ import java.util.stream.Collectors;
11 11
12 import javax.annotation.Resource; 12 import javax.annotation.Resource;
13 13
  14 +import org.apache.poi.hpsf.Decimal;
14 import org.apache.shiro.SecurityUtils; 15 import org.apache.shiro.SecurityUtils;
15 import org.jeecg.common.api.vo.Result; 16 import org.jeecg.common.api.vo.Result;
16 import org.jeecg.common.system.vo.LoginUser; 17 import org.jeecg.common.system.vo.LoginUser;
@@ -1547,6 +1548,8 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1547,6 +1548,8 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1547 //3.单据list如果差异数量+生成入库单,差异数-生成出库单进行回传类型其他出库单 1548 //3.单据list如果差异数量+生成入库单,差异数-生成出库单进行回传类型其他出库单
1548 1549
1549 1550
  1551 + InventoryHeader inventoryHeader = inventoryHeaderService.getById(cycleCountDetail.getInventoryHeaderId());
  1552 +
1550 int outboundOrderId=0; 1553 int outboundOrderId=0;
1551 String outboundOrderCode=null; 1554 String outboundOrderCode=null;
1552 int warehousingOrderId=0; 1555 int warehousingOrderId=0;
@@ -1555,6 +1558,17 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1555,6 +1558,17 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1555 1558
1556 for (CycleCountDetailChild child : children) 1559 for (CycleCountDetailChild child : children)
1557 { 1560 {
  1561 + InventoryDetail inventoryDetail = inventoryDetailService.getById(child.getInventoryDetaiId());
  1562 + if (inventoryDetail==null)
  1563 + {
  1564 + return Result.error("盘点还没完成 库存明细单据就不存在了 可能出现了问题或者所容器没成功");
  1565 + }
  1566 +
  1567 + inventoryHeader.setTotalQty(inventoryHeader.getTotalQty().add(child.getGapQty()));
  1568 +
  1569 + inventoryDetail.setQty(child.getCountedQty());
  1570 + inventoryDetailService.updateById(inventoryDetail);
  1571 +
1558 child.setChildStatus(QuantityConstant.CYCLECOUNT_STATUS_COMPLETED); 1572 child.setChildStatus(QuantityConstant.CYCLECOUNT_STATUS_COMPLETED);
1559 if (child.getGapQty().compareTo(BigDecimal.ZERO) == 1) 1573 if (child.getGapQty().compareTo(BigDecimal.ZERO) == 1)
1560 { 1574 {
@@ -1582,7 +1596,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1582,7 +1596,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1582 receiptDetail.setReceiptId(warehousingOrderId); 1596 receiptDetail.setReceiptId(warehousingOrderId);
1583 receiptDetail.setReceiptCode(warehousingOrderCode); 1597 receiptDetail.setReceiptCode(warehousingOrderCode);
1584 receiptDetail.setWarehouseCode(taskHeader.getWarehouseCode()); 1598 receiptDetail.setWarehouseCode(taskHeader.getWarehouseCode());
1585 - receiptDetail.setCompanyCode(null); 1599 + receiptDetail.setCompanyCode(taskHeader.getCompanyCode());
1586 receiptDetail.setMaterialCode(child.getMaterialCode()); 1600 receiptDetail.setMaterialCode(child.getMaterialCode());
1587 receiptDetail.setMaterialName(child.getMaterialName()); 1601 receiptDetail.setMaterialName(child.getMaterialName());
1588 receiptDetail.setMaterialSpec(child.getMaterialSpec()); 1602 receiptDetail.setMaterialSpec(child.getMaterialSpec());
@@ -1595,10 +1609,38 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1595,10 +1609,38 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1595 receiptDetail.setStatus(QuantityConstant.RECEIPT_HEADER_COMPLETED); 1609 receiptDetail.setStatus(QuantityConstant.RECEIPT_HEADER_COMPLETED);
1596 receiptDetailService.save(receiptDetail); 1610 receiptDetailService.save(receiptDetail);
1597 1611
  1612 + //增加库存交易记录
  1613 + InventoryTransaction inventoryTransaction=new InventoryTransaction();
  1614 + inventoryTransaction.setWarehouseCode(taskHeader.getWarehouseCode());
  1615 + inventoryTransaction.setCompanyCode(taskHeader.getCompanyCode());
  1616 + inventoryTransaction.setContainerCode(child.getContainerCode());
  1617 + inventoryTransaction.setToLocationCode(child.getLocationCode());
  1618 + inventoryTransaction.setType(QuantityConstant.INVENTORY_TRANSACTION_CYCLEINTO);
  1619 + inventoryTransaction.setReceiptId(warehousingOrderId);
  1620 + inventoryTransaction.setReceiptDetailId(receiptDetail.getReceiptId());
  1621 + inventoryTransaction.setMaterialCode(child.getMaterialCode());
  1622 + inventoryTransaction.setMaterialName(child.getMaterialName());
  1623 + inventoryTransaction.setMaterialSpec(child.getMaterialSpec());
  1624 + inventoryTransaction.setMaterialUnit(child.getMaterialUnit());
  1625 + inventoryTransaction.setInventoryStatus(child.getInventoryStatus());
  1626 + inventoryTransaction.setQty(child.getCountedQty());
  1627 + inventoryTransaction.setBatch(child.getBatch());
  1628 + inventoryTransaction.setLot(child.getLot());
  1629 + inventoryTransactionService.save(inventoryTransaction);
  1630 +
1598 } 1631 }
1599 1632
  1633 +
  1634 +
1600 if (child.getGapQty().compareTo(BigDecimal.ZERO) == -1) 1635 if (child.getGapQty().compareTo(BigDecimal.ZERO) == -1)
1601 { 1636 {
  1637 +
  1638 + if (child.getGapQty().abs().compareTo(child.getSystemQty()) > -1)
  1639 + {
  1640 + inventoryDetailService.removeById(child.getInventoryDetaiId());
  1641 + }
  1642 +
  1643 +
1602 if (outboundOrderId==0) 1644 if (outboundOrderId==0)
1603 { 1645 {
1604 ShipmentHeader shipmentHeader = new ShipmentHeader(); 1646 ShipmentHeader shipmentHeader = new ShipmentHeader();
@@ -1624,7 +1666,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1624,7 +1666,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1624 shipmentDetail.setShipmentId(outboundOrderId); 1666 shipmentDetail.setShipmentId(outboundOrderId);
1625 shipmentDetail.setShipmentCode(outboundOrderCode); 1667 shipmentDetail.setShipmentCode(outboundOrderCode);
1626 shipmentDetail.setWarehouseCode(taskHeader.getWarehouseCode()); 1668 shipmentDetail.setWarehouseCode(taskHeader.getWarehouseCode());
1627 - shipmentDetail.setCompanyCode(null); 1669 + shipmentDetail.setCompanyCode(taskHeader.getCompanyCode());
1628 shipmentDetail.setMaterialCode(child.getMaterialCode()); 1670 shipmentDetail.setMaterialCode(child.getMaterialCode());
1629 shipmentDetail.setMaterialName(child.getMaterialName()); 1671 shipmentDetail.setMaterialName(child.getMaterialName());
1630 shipmentDetail.setMaterialSpec(child.getMaterialSpec()); 1672 shipmentDetail.setMaterialSpec(child.getMaterialSpec());
@@ -1636,11 +1678,35 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1636,11 +1678,35 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1636 shipmentDetail.setLot(child.getLot()); 1678 shipmentDetail.setLot(child.getLot());
1637 shipmentDetail.setStatus(QuantityConstant.RECEIPT_HEADER_COMPLETED); 1679 shipmentDetail.setStatus(QuantityConstant.RECEIPT_HEADER_COMPLETED);
1638 shipmentDetailService.save(shipmentDetail); 1680 shipmentDetailService.save(shipmentDetail);
  1681 +
  1682 + InventoryTransaction inventoryTransaction=new InventoryTransaction();
  1683 + inventoryTransaction.setWarehouseCode(taskHeader.getWarehouseCode());
  1684 + inventoryTransaction.setCompanyCode(taskHeader.getCompanyCode());
  1685 + inventoryTransaction.setContainerCode(child.getContainerCode());
  1686 + inventoryTransaction.setFromLocationCode(child.getLocationCode());
  1687 + inventoryTransaction.setType(QuantityConstant.INVENTORY_TRANSACTION_CYCLEOUT);
  1688 + inventoryTransaction.setShipmentId(outboundOrderId);
  1689 + inventoryTransaction.setShipmentDetailId(shipmentDetail.getId());
  1690 + inventoryTransaction.setMaterialCode(child.getMaterialCode());
  1691 + inventoryTransaction.setMaterialName(child.getMaterialName());
  1692 + inventoryTransaction.setMaterialSpec(child.getMaterialSpec());
  1693 + inventoryTransaction.setMaterialUnit(child.getMaterialUnit());
  1694 + inventoryTransaction.setInventoryStatus(child.getInventoryStatus());
  1695 + inventoryTransaction.setQty(child.getCountedQty());
  1696 + inventoryTransaction.setBatch(child.getBatch());
  1697 + inventoryTransaction.setLot(child.getLot());
  1698 + inventoryTransactionService.save(inventoryTransaction);
1639 } 1699 }
1640 cycleCountDetailChildService.updateById(child); 1700 cycleCountDetailChildService.updateById(child);
1641 } 1701 }
1642 1702
1643 1703
  1704 + if (inventoryHeader.getTotalQty().compareTo(BigDecimal.ZERO)<1)
  1705 + {
  1706 + inventoryHeaderService.removeById(inventoryHeader);
  1707 + }
  1708 +
  1709 + inventoryHeaderService.updateById(inventoryHeader);
1644 1710
1645 //4.完成当前任务 1711 //4.完成当前任务
1646 if (!taskHeaderService.saveOrUpdate(taskHeader)) { 1712 if (!taskHeaderService.saveOrUpdate(taskHeader)) {
@@ -1658,6 +1724,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea @@ -1658,6 +1724,7 @@ public class TaskHeaderServiceImpl extends ServiceImpl&lt;TaskHeaderMapper, TaskHea
1658 //释放库位 1724 //释放库位
1659 locationService.updateStatus(cycleCountDetail.getLocationCode(), 1725 locationService.updateStatus(cycleCountDetail.getLocationCode(),
1660 QuantityConstant.STATUS_LOCATION_EMPTY, taskHeader.getWarehouseCode()); 1726 QuantityConstant.STATUS_LOCATION_EMPTY, taskHeader.getWarehouseCode());
  1727 +
1661 return Result.OK("完成盘点任务成功"); 1728 return Result.OK("完成盘点任务成功");
1662 } 1729 }
1663 1730