Browse Source

完善代码

yuansh 1 tháng trước cách đây
mục cha
commit
30658d0b7f

+ 1 - 1
srm-module-code/src/main/java/org/jeecg/modules/baseCode/service/impl/SerialPatternServiceImpl.java

@@ -76,7 +76,7 @@ public class SerialPatternServiceImpl extends ServiceImpl<SerialPatternMapper, S
             // 查找最大值
             QueryWrapper<Map<String,String>> queryWrapper = new QueryWrapper<>();
             if(StringUtils.isNotBlank(prefix)){
-                queryWrapper.likeRight(fieldName,prefix);
+                queryWrapper.likeRight(fieldName,prefix+dateStr);
             }
             Map<String,Object> row = sysSerialPatternMapper.selectMax(tableName, fieldName, queryWrapper);
             String maxValue = "";

+ 8 - 0
srm-module-code/src/main/java/org/jeecg/modules/saleCode/service/impl/SaleInvoiceServiceImpl.java

@@ -90,6 +90,10 @@ public class SaleInvoiceServiceImpl extends ServiceImpl<SaleInvoiceMapper, SaleI
 		if(saleInvoiceShipList!=null && saleInvoiceShipList.size()>0) {
 			for(SaleInvoiceShip entity:saleInvoiceShipList) {
 				entity.setId(null);
+				entity.setCreateBy(null);
+				entity.setCreateTime(null);
+				entity.setUpdateBy(null);
+				entity.setUpdateTime(null);
 				//外键设置
 				entity.setHeadId(saleInvoice.getId());
 				saleInvoiceShipMapper.insert(entity);
@@ -98,6 +102,10 @@ public class SaleInvoiceServiceImpl extends ServiceImpl<SaleInvoiceMapper, SaleI
 		if(saleInvoiceProductList!=null && saleInvoiceProductList.size()>0) {
 			for(SaleInvoiceProduct entity:saleInvoiceProductList) {
 				entity.setId(null);
+				entity.setCreateBy(null);
+				entity.setCreateTime(null);
+				entity.setUpdateBy(null);
+				entity.setUpdateTime(null);
 				//外键设置
 				entity.setHeadId(saleInvoice.getId());
 				saleInvoiceProductMapper.insert(entity);