mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 12:52:07 +08:00
1、cad拆单新增plateno生成规则,追加5位组织号在前;2、小程序解析新plateno号;
This commit is contained in:
+1
-1
@@ -780,7 +780,7 @@ public class WebCadOrderImportAsyncFactory {
|
||||
.id(plateId)
|
||||
.orderId(orderId)
|
||||
.name(block.getName())
|
||||
.plateNo(obtainingTime + Long.toString(plateNo).substring(2))
|
||||
.plateNo(String.format("%05d", organId) + obtainingTime + Long.toString(plateNo).substring(2))
|
||||
.type(block.getType())
|
||||
.goodsId(goodsDO.getId())
|
||||
.width(getBigDecimalOrNull(block.getWidth()))
|
||||
|
||||
+1
-1
@@ -977,7 +977,7 @@ public class WebCadOrderImportFactory {
|
||||
.id(plateId)
|
||||
.orderId(orderId)
|
||||
.name(block.getName())
|
||||
.plateNo(obtainingTime + Long.toString(plateNo).substring(2))
|
||||
.plateNo(String.format("%05d", organId) + obtainingTime + Long.toString(plateNo).substring(2))
|
||||
.type(block.getType())
|
||||
.goodsId(goodsDO.getId())
|
||||
.width(getBigDecimalOrNull(block.getWidth()))
|
||||
|
||||
Reference in New Issue
Block a user