|
@@ -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);
|