mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
webcad拆单柜体成倍数量记录修正,增加成倍序号
This commit is contained in:
+5
@@ -96,4 +96,9 @@ public class OrderBodyDO extends BaseDO {
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private String multiRoomBodyName;
|
||||
|
||||
/**
|
||||
* 成倍序号
|
||||
*/
|
||||
private int sort;
|
||||
}
|
||||
+1
-1
@@ -740,7 +740,7 @@ public class WebCadOrderImportAsyncFactory {
|
||||
Long bodyId = (Long) snowFlakeGenerator.nextId(null);
|
||||
orderBodyDO = OrderBodyDO.builder().id(bodyId).orderId(orderId).organId(organId)
|
||||
.roomId(roomId).roomName(roomName).name(boxName).width(0.0).height(0.0)
|
||||
.depth(0.0).multiNum(0).plateNum(0).unregularNum(0).filename("无").remark("无").deleted(false).build();
|
||||
.depth(0.0).multiNum(count).sort(i+1).plateNum(0).unregularNum(0).filename("无").remark("无").deleted(false).build();
|
||||
orderBodyDO.setCreator(operatorName);
|
||||
orderBodyDO.setUpdater(operatorName);
|
||||
orderBodyDO.setCreateTime(now);
|
||||
|
||||
+1
-1
@@ -664,7 +664,7 @@ public class WebCadOrderImportFactory {
|
||||
Long bodyId = (Long) snowFlakeGenerator.nextId(null);
|
||||
OrderBodyDO orderBodyDO = OrderBodyDO.builder().id(bodyId).orderId(orderId).organId(organId)
|
||||
.roomId(roomId).roomName(roomName).name(boxName).width(0.0).height(0.0)
|
||||
.depth(0.0).multiNum(0).plateNum(0).unregularNum(0).filename("无").remark("无").deleted(false).build();
|
||||
.depth(0.0).multiNum(count).sort(i + 1).plateNum(0).unregularNum(0).filename("无").remark("无").deleted(false).build();
|
||||
orderBodyDO.setCreator(operatorName);
|
||||
orderBodyDO.setUpdater(operatorName);
|
||||
orderBodyDO.setCreateTime(now);
|
||||
|
||||
Reference in New Issue
Block a user