diff --git a/mhd_bms/src/main/java/com/mhd/bms/application/server/settlementCustomers/SettlementCustomersApplicationService.java b/mhd_bms/src/main/java/com/mhd/bms/application/server/settlementCustomers/SettlementCustomersApplicationService.java index b388a4617..24e92fceb 100644 --- a/mhd_bms/src/main/java/com/mhd/bms/application/server/settlementCustomers/SettlementCustomersApplicationService.java +++ b/mhd_bms/src/main/java/com/mhd/bms/application/server/settlementCustomers/SettlementCustomersApplicationService.java @@ -282,6 +282,7 @@ public class SettlementCustomersApplicationService { saveEntity.setSettlementEntity(userShipperPo.getUserName()); saveEntity.setSettlementMethodCode("monthly_settle"); saveEntity.setMainRole(1); + saveEntity.setCustomerTypeCode("customer"); //从货主同步过来的 默认客户 saveEntity(saveEntity); }); } @@ -307,6 +308,7 @@ public class SettlementCustomersApplicationService { saveEntity.setSettlementEntity(userDriverPo.getUserName()); saveEntity.setSettlementMethodCode("monthly_settle"); saveEntity.setMainRole(1); + saveEntity.setCustomerTypeCode("customer"); saveEntity(saveEntity); }); }