@ -1346,6 +1346,9 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
String trunkLinePrice = excel . getTrunkLinePrice ( ) ;
String dispatchPrice = excel . getDispatchPrice ( ) ;
if ( StrUtil . isNotEmpty ( pickupPrice ) & & Convert . toDouble ( pickupPrice ) > 0 ) {
String pickupPricingType = templateEntity . getPickupPricingType ( ) ;
// 提货费的计价方式是否包含整车
if ( StrUtil . isNotEmpty ( pickupPricingType ) & & StrUtil . contains ( pickupPricingType , PickupPricingTypeEnums . COMPLETE_VEHICLE . getCode ( ) . toString ( ) ) ) {
boolean b = ObjectUtil . isNotEmpty ( pickupIsUnifyAreaBill ) & & ObjectUtil . equal ( pickupIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceFullVehicleEntity entity = null ;
if ( b ) {
@ -1392,7 +1395,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
}
}
if ( StrUtil . isNotEmpty ( trunkLinePrice ) & & Convert . toDouble ( trunkLinePrice ) > 0 ) {
String pricingType = templateEntity . getTrunklinePricingType ( ) ;
// 提货费的计价方式是否包含整车
if ( StrUtil . isNotEmpty ( pricingType ) & & StrUtil . contains ( pricingType , TrunkLinePricingTypeEnums . COMPLETE_VEHICLE . getCode ( ) . toString ( ) ) ) {
boolean b = ObjectUtil . isNotEmpty ( trunklineIsUnifyAreaBill ) & & ObjectUtil . equal ( trunklineIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceFullVehicleEntity entity = null ;
if ( b ) {
@ -1438,8 +1446,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
entities . add ( entity ) ;
}
}
}
if ( StrUtil . isNotEmpty ( dispatchPrice ) & & Convert . toDouble ( dispatchPrice ) > 0 ) {
String pricingType = templateEntity . getDispatchPricingType ( ) ;
// 提货费的计价方式是否包含整车
if ( StrUtil . isNotEmpty ( pricingType ) & & StrUtil . contains ( pricingType , DispatchPricingTypeEnums . COMPLETE_VEHICLE . getCode ( ) . toString ( ) ) ) {
BasicdataPriceFullVehicleEntity entity = null ;
if ( dispatchEntityMap . containsKey ( excel . getClient ( ) + excel . getBrand ( ) + excel . getVehicleType ( ) ) ) {
entity = dispatchEntityMap . get ( excel . getClient ( ) + excel . getBrand ( ) + excel . getVehicleType ( ) ) ;
@ -1462,6 +1474,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
// 价格
entity . setPrice ( Convert . toDouble ( dispatchPrice ) ) ;
}
}
}
if ( CollUtil . isNotEmpty ( pickupEntityMap ) ) {
@ -1556,6 +1569,8 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
String dispatchMinCost = basicExcel . getDispatchMinCost ( ) ;
String dispatchLeaveBehindMinCost = basicExcel . getDispatchLeaveBehindMinCost ( ) ;
if ( StrUtil . isNotEmpty ( pickupMinCost ) & & Convert . toDouble ( pickupMinCost ) > 0 ) {
Integer isMinCost = templateEntity . getPickupIsMinCost ( ) ;
if ( ObjectUtil . isNotEmpty ( isMinCost ) & & ObjectUtil . equal ( isMinCost , BooleanZeroOneEnums . YES . getCode ( ) ) ) {
boolean b = ObjectUtil . isNotEmpty ( pickupIsUnifyAreaBill ) & & ObjectUtil . equal ( pickupIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
// 服务类型
BasicdataPriceGeneralEntity basicEntity = null ;
@ -1601,7 +1616,11 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
}
}
if ( StrUtil . isNotEmpty ( trunkLineMinCost ) & & Convert . toDouble ( trunkLineMinCost ) > 0 ) {
Integer isMinCost = templateEntity . getTrunklineIsMinCost ( ) ;
if ( ObjectUtil . isNotEmpty ( isMinCost ) & & ObjectUtil . equal ( isMinCost , BooleanZeroOneEnums . YES . getCode ( ) ) ) {
boolean b = ObjectUtil . isNotEmpty ( trunklineIsUnifyAreaBill ) & & ObjectUtil . equal ( trunklineIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
// 服务类型
BasicdataPriceGeneralEntity basicEntity = null ;
@ -1645,9 +1664,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
entities . add ( basicEntity ) ;
}
}
}
if ( StrUtil . isNotEmpty ( dispatchMinCost ) & & Convert . toDouble ( dispatchMinCost ) > 0 ) {
// 服务类型
Integer isMinCost = templateEntity . getDispatchIsMinCost ( ) ;
if ( ObjectUtil . isNotEmpty ( isMinCost ) & & ObjectUtil . equal ( isMinCost , BooleanZeroOneEnums . YES . getCode ( ) ) ) {
BasicdataPriceGeneralEntity basicEntity = null ;
if ( dispatchEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
basicEntity = dispatchEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
@ -1666,9 +1688,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
basicEntity . setAdditionalCost ( Convert . toDouble ( basicExcel . getDispatchAddCost ( ) ) ) ;
}
}
}
if ( StrUtil . isNotEmpty ( dispatchLeaveBehindMinCost ) & & Convert . toDouble ( dispatchLeaveBehindMinCost ) > 0 ) {
// 服务类型
Integer isMinCost = templateEntity . getDispatchIsMinCost ( ) ;
if ( ObjectUtil . isNotEmpty ( isMinCost ) & & ObjectUtil . equal ( isMinCost , BooleanZeroOneEnums . YES . getCode ( ) ) ) {
BasicdataPriceGeneralEntity basicEntity = null ;
if ( dispatchLeaveBehindEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
basicEntity = dispatchLeaveBehindEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
@ -1687,6 +1712,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
basicEntity . setAdditionalCost ( Convert . toDouble ( basicExcel . getDispatchLeaveBehindAddCost ( ) ) ) ;
}
}
}
String dispatchUpwardJudgment = basicExcel . getDispatchUpwardJudgment ( ) ;
if ( StrUtil . isNotEmpty ( dispatchUpwardJudgment ) ) {
@ -1800,241 +1826,218 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
String pickupPrice = basicExcel . getPickupPrice ( ) ;
String trunkLinePrice = basicExcel . getTrunkLinePrice ( ) ;
if ( StrUtil . isNotEmpty ( pickupPrice ) & & Convert . toDouble ( pickupPrice ) > 0 ) {
Long routeId = null ;
Integer pickupIsByCategory = templateEntity . getPickupIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
// 按区域计费 有路径的
boolean b = ObjectUtil . isNotEmpty ( pickupIsUnifyAreaBill ) & & ObjectUtil . equal ( pickupIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceCategoryBasicEntity basicEntity = null ;
if ( b ) {
if ( ! ObjectUtil . isAllEmpty ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getSendOrg ( ) ) ) {
String key = buildRoutKeyV2 ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getStartProvince ( ) ,
basicExcel . getStartCity ( ) , basicExcel . getStartArea ( ) , basicExcel . getEndProvince ( ) ,
basicExcel . getEndCity ( ) , basicExcel . getEndArea ( ) , basicExcel . getSendOrg ( ) , "1" ) ;
BasicdataPriceRouteEntity routeEntity = routeEntityMap . get ( key ) ;
if ( ObjectUtil . isNotEmpty ( routeEntity ) ) {
routeId = routeEntity . getId ( ) ;
buildSaveBasicExcel ( categoryEntityMap , routeEntityMap , pickupEntityMap , basicExcel , priceEntity , templateEntity , pickupIsUnifyAreaBill , pickupPrice ) ;
}
} else {
log . error ( "价格体系导入CategoryBasic数据无法处理,模板配置的按区域计费,数据不满足路径条件:{}" , JSONUtil . toJsonStr ( basicExcel ) ) ;
continue ;
if ( StrUtil . isNotEmpty ( trunkLinePrice ) & & Convert . toDouble ( trunkLinePrice ) > 0 ) {
buildSaveTrunkLineExcel ( categoryEntityMap , routeEntityMap , trunkLineEntityMap , basicExcel , priceEntity , templateEntity , trunklineIsUnifyAreaBill , trunkLinePrice ) ;
}
String withinThirtyPrice = basicExcel . getWithinThirtyPrice ( ) ;
String betweenThirtySixtyPrice = basicExcel . getBetweenThirtySixtyPrice ( ) ;
String beyondSixtyPrice = basicExcel . getBeyondSixtyPrice ( ) ;
String beyondNinetyPrice = basicExcel . getBeyondNinetyPrice ( ) ;
// 4个仓储费只要有一个不为空则创建
if ( ( ObjectUtil . isNotEmpty ( withinThirtyPrice ) & & Convert . toDouble ( withinThirtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( betweenThirtySixtyPrice ) & & Convert . toDouble ( betweenThirtySixtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( beyondSixtyPrice ) & & Convert . toDouble ( beyondSixtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( beyondNinetyPrice ) & & Convert . toDouble ( beyondNinetyPrice ) > 0 ) ) {
buildSaveWarehouseExcel ( categoryEntityMap , warehouseEntityMap , basicExcel , priceEntity , templateEntity ) ;
}
if ( b & & categoryFlag ) {
// 有路径按品类计费 一个客户一条路径一个品类一个价格
if ( pickupEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ) ) {
basicEntity = pickupEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) , basicEntity ) ;
String warehouseOperatePrice = basicExcel . getWarehouseOperatePrice ( ) ;
String warehouseManagementPrice = basicExcel . getWarehouseManagementPrice ( ) ;
String warehouseSortPrice = basicExcel . getWarehouseSortPrice ( ) ;
if ( ( ObjectUtil . isNotEmpty ( warehouseOperatePrice ) & & Convert . toDouble ( warehouseOperatePrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( warehouseManagementPrice ) & & Convert . toDouble ( warehouseManagementPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( warehouseSortPrice ) & & Convert . toDouble ( warehouseSortPrice ) > 0 ) ) {
buildSaveWarehouseAddExcel ( categoryEntityMap , warehouseAddEntityMap , basicExcel , priceEntity , template Entity) ;
}
} else if ( b & & ! categoryFlag ) {
// 有路径不按品类计费,一个客户一条路径一个价格
if ( pickupEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ) ) {
basicEntity = pickupEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId , basicEntity ) ;
String dispatchPrice = basicExcel . getDispatchPrice ( ) ;
if ( StrUtil . isNotEmpty ( dispatchPrice ) & & Convert . toDouble ( dispatchPrice ) > 0 ) {
buildSaveDispatchExcel ( categoryEntityMap , dispatchEntityMap , basicExcel , priceEntity , templateEntity ) ;
}
} else if ( ! b & & categoryFlag ) {
// 没路径 按品类计费 一个客户一个品类一个价格
if ( pickupEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
basicEntity = pickupEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , basicEntity ) ;
String dispatchSortPrice = basicExcel . getDispatchSortPrice ( ) ;
String dispatchHandlingPrice = basicExcel . getDispatchHandlingPrice ( ) ;
String dispatchRelocationPrice = basicExcel . getDispatchRelocationPrice ( ) ;
String dispatchDeliveryPrice = basicExcel . getDispatchDeliveryPrice ( ) ;
if ( ( ObjectUtil . isNotEmpty ( dispatchSortPrice ) & & Convert . toDouble ( dispatchSortPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchHandlingPrice ) & & Convert . toDouble ( dispatchHandlingPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchRelocationPrice ) & & Convert . toDouble ( dispatchRelocationPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchDeliveryPrice ) & & Convert . toDouble ( dispatchDeliveryPrice ) > 0 ) ) {
buildSaveDispatchAddExcel ( categoryEntityMap , dispatchAddEntityMap , basicExcel , priceEntity , templateEntity ) ;
}
} else {
// 没路径 不按品类计费 一个客户一个价格
if ( pickupEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
basicEntity = pickupEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , basicEntity ) ;
String dispatchStairsCarryingCharge = basicExcel . getDispatchStairsCarryingCharge ( ) ;
if ( StrUtil . isNotEmpty ( dispatchStairsCarryingCharge ) ) {
priceEntity . setDispatchStairsCarryingCharge ( Convert . toInt ( dispatchStairsCarryingCharge ) ) ;
}
}
// 按区域计费
if ( b ) {
basicEntity . setBoId ( routeId ) ;
} else {
basicEntity . setBoId ( priceEntity . getId ( ) ) ;
if ( CollUtil . isNotEmpty ( pickupEntityMap ) ) {
basicEntities . addAll ( pickupEntityMap . values ( ) ) ;
}
basicEntity . setServiceType ( ServiceTypeEnums . PICK_UP . getCode ( ) ) ;
// 计费类型
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
basicEntity . setType ( IDict . getCodeByText ( PickupPricingTypeEnums . class , basicExcel . getPickupUnit ( ) ) ) ;
if ( CollUtil . isNotEmpty ( trunkLineEntityMap ) ) {
basicEntities . addAll ( trunkLineEntityMap . values ( ) ) ;
}
basicEntity . setPriceId ( priceEntity . getId ( ) ) ;
// 品类
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
if ( ObjectUtil . isNotEmpty ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) ) ) {
if ( categoryFlag ) {
basicEntity . setCategoryId ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) . getId ( ) ) ;
if ( CollUtil . isNotEmpty ( warehouseEntityMap ) ) {
warehouseEntities . addAll ( warehouseEntityMap . values ( ) ) ;
}
if ( CollUtil . isNotEmpty ( warehouseAddEntityMap ) ) {
warehouseEntities . addAll ( warehouseAddEntityMap . values ( ) ) ;
}
if ( CollUtil . isNotEmpty ( dispatchEntityMap ) ) {
dispatchEntities . addAll ( dispatchEntityMap . values ( ) ) ;
}
// 价格
basicEntity . setPrice ( Convert . toDouble ( pickupPrice ) ) ;
if ( CollUtil . isNotEmpty ( dispatchAddEntityMap ) ) {
dispatchEntities . addAll ( dispatchAddEntityMap . values ( ) ) ;
}
if ( StrUtil . isNotEmpty ( trunkLinePrice ) & & Convert . toDouble ( trunkLinePrice ) > 0 ) {
Long routeId = null ;
Integer pickupIsByCategory = templateEntity . getTrunklineIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
// 按区域计费 有路径的
boolean b = ObjectUtil . isNotEmpty ( trunklineIsUnifyAreaBill ) & & ObjectUtil . equal ( trunklineIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceCategoryBasicEntity basicEntity = null ;
if ( b ) {
if ( ! ObjectUtil . isAllEmpty ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getSendOrg ( ) ) ) {
String key = buildRoutKeyV2 ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getStartProvince ( ) ,
basicExcel . getStartCity ( ) , basicExcel . getStartArea ( ) , basicExcel . getEndProvince ( ) ,
basicExcel . getEndCity ( ) , basicExcel . getEndArea ( ) , basicExcel . getSendOrg ( ) , "2" ) ;
BasicdataPriceRouteEntity routeEntity = routeEntityMap . get ( key ) ;
if ( ObjectUtil . isNotEmpty ( routeEntity ) ) {
routeId = routeEntity . getId ( ) ;
}
} else {
log . error ( "价格体系导入CategoryBasic数据无法处理,模板配置的按区域计费,数据不满足路径条件:{}" , JSONUtil . toJsonStr ( basicExcel ) ) ;
continue ;
}
private void buildSaveDispatchAddExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceCategoryDispatchEntity > dispatchAddEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity ) {
// 配送是否附加费
Integer dispatchIsAddFee = templateEntity . getDispatchIsAddFee ( ) ;
if ( ObjectUtil . isEmpty ( dispatchIsAddFee ) | | ObjectUtil . equal ( dispatchIsAddFee , BooleanZeroOneEnums . NO . getCode ( ) ) ) {
return ;
}
if ( b & & categoryFlag ) {
// 有路径按品类计费
if ( trunkLineEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ) ) {
basicEntity = trunkLineEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
trunkLineEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) , basicEntity ) ;
Integer pickupIsByCategory = templateEntity . getDispatchIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
BasicdataPriceCategoryDispatchEntity entity = null ;
if ( categoryFlag ) {
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
} else if ( b & & ! categoryFlag ) {
// 有路径不按品类计费,一个客户一条路径一个价格
if ( trunkLineEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ) ) {
basicEntity = trunkLineEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ) ;
if ( dispatchAddEntityMap . containsKey ( key ) ) {
entity = dispatchAddEntityMap . get ( key ) ;
} else {
basicE ntity = new BasicdataPriceCategoryBasic Entity ( ) ;
trunkLineEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId , basicE ntity ) ;
entity = new BasicdataPriceCategoryDispatchEntity ( ) ;
dispatchAddEntityMap . put ( key , e ntity) ;
}
} else if ( ! b & & categoryFlag ) {
// 没路径 按品类计费 一个客户一个品类一个价格
if ( trunkLineEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
basicEntity = trunkLineEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
trunkLineEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , basicEntity ) ;
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
if ( dispatchAddEntityMap . containsKey ( key ) ) {
entity = dispatchAddEntityMap . get ( key ) ;
} else {
// 没路径 不按品类计费 一个客户一个价格
if ( trunkLineEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
basicEntity = trunkLineEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
trunkLineEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , basicEntity ) ;
entity = new BasicdataPriceCategoryDispatchEntity ( ) ;
dispatchAddEntityMap . put ( key , entity ) ;
}
}
// 按区域计费
if ( b ) {
basicEntity . setBoId ( routeId ) ;
} else {
basicEntity . setBoId ( priceEntity . getId ( ) ) ;
}
basicEntity . setServiceType ( ServiceTypeEnums . TRUNK_LINE . getCode ( ) ) ;
// 计费类型
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
basicEntity . setType ( IDict . getCodeByText ( TrunkLinePricingTypeEnums . class , basicExcel . getTrunkLineUnit ( ) ) ) ;
if ( ObjectUtil . isNotEmpty ( priceEntity ) ) {
entity . setPriceId ( priceEntity . getId ( ) ) ;
entity . setBoId ( priceEntity . getId ( ) ) ;
}
basicEntity . setPriceId ( priceEntity . getId ( ) ) ;
// 品类
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
if ( ObjectUtil . isNotEmpty ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) ) ) {
BasicdataCategoryEntity basicdataCategoryEntity = categoryEntityMap . get ( basicExcel . getCategory ( ) ) ;
if ( ObjectUtil . isNotEmpty ( basicdataCategoryEntity ) ) {
if ( categoryFlag ) {
basicE ntity . setCategoryId ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) . getId ( ) ) ;
entity . setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
}
}
}
// 价格
basicEntity . setPrice ( Convert . toDouble ( trunkLinePrice ) ) ;
entity . setCostType ( CostTypeEnums . ADD . getCode ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
entity . setType ( IDict . getCodeByText ( DispatchPricingTypeEnums . class , basicExcel . getDispatchUnit ( ) ) ) ;
}
String withinThirtyPrice = basicExcel . getWithinThirtyPrice ( ) ;
String betweenThirtySixtyPrice = basicExcel . getBetweenThirtySixtyPrice ( ) ;
String beyondSixtyPrice = basicExcel . getBeyondSixtyPrice ( ) ;
String beyondNinetyPrice = basicExcel . getBeyondNinetyPrice ( ) ;
// 4个仓储费只要有一个不为空则创建
if ( ( ObjectUtil . isNotEmpty ( withinThirtyPrice ) & & Convert . toDouble ( withinThirtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( betweenThirtySixtyPrice ) & & Convert . toDouble ( betweenThirtySixtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( beyondSixtyPrice ) & & Convert . toDouble ( beyondSixtyPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( beyondNinetyPrice ) & & Convert . toDouble ( beyondNinetyPrice ) > 0 ) ) {
Integer pickupIsByCategory = templateEntity . getWarehouseIsByCategory ( ) ;
entity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchSortPrice ( ) ) ) {
entity . setSortPrice ( Convert . toDouble ( basicExcel . getDispatchSortPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchHandlingPrice ( ) ) ) {
entity . setHandlingPrice ( Convert . toDouble ( basicExcel . getDispatchHandlingPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchRelocationPrice ( ) ) ) {
entity . setRelocationPrice ( Convert . toDouble ( basicExcel . getDispatchRelocationPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchDeliveryPrice ( ) ) ) {
entity . setUpstairsDeliveryPrice ( Convert . toDouble ( basicExcel . getDispatchDeliveryPrice ( ) ) ) ;
}
}
private void buildSaveDispatchExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceCategoryDispatchEntity > dispatchEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity ) {
Integer pickupIsByCategory = templateEntity . getDispatchIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
BasicdataPriceCategoryWarehouseEntity warehouseEntity = null ;
BasicdataPriceCategoryDispatchEntity e ntity = null ;
if ( categoryFlag ) {
if ( warehouseEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
warehouseEntity = warehouseEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
if ( dispatchEntityMap . containsKey ( key ) ) {
entity = dispatchEntityMap . get ( key ) ;
} else {
warehouseEntity = new BasicdataPriceCategoryWarehouseEntity ( ) ;
warehouseEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , warehouseEntity ) ;
entity = new BasicdataPriceCategoryDispatch Entity ( ) ;
dispatchEntityMap . put ( key , e ntity) ;
}
} else {
if ( warehouseEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
warehouseEntity = warehouseEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
if ( dispatchEntityMap . containsKey ( key ) ) {
entity = dispatchEntityMap . get ( key ) ;
} else {
warehouseEntity = new BasicdataPriceCategoryWarehouseEntity ( ) ;
warehouseEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , warehouseEntity ) ;
entity = new BasicdataPriceCategoryDispatch Entity ( ) ;
dispatch EntityMap. put ( key , e ntity) ;
}
}
if ( ObjectUtil . isNotEmpty ( priceEntity ) ) {
war ehouseE ntity. setPriceId ( priceEntity . getId ( ) ) ;
war ehouseE ntity. setBoId ( priceEntity . getId ( ) ) ;
entity . setPriceId ( priceEntity . getId ( ) ) ;
entity . setBoId ( priceEntity . getId ( ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
BasicdataCategoryEntity basicdataCategoryEntity = categoryEntityMap . get ( basicExcel . getCategory ( ) ) ;
if ( ObjectUtil . isNotEmpty ( basicdataCategoryEntity ) ) {
if ( categoryFlag ) {
war ehouseE ntity. setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
entity . setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
}
}
}
warehouseEntity . setCostType ( CostTypeEnums . NOMAL . getCode ( ) ) ;
warehouseEntity . setType ( Convert . toInt ( templateEntity . getWarehousePricingType ( ) ) ) ;
warehouseEntity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getWithinThirtyPrice ( ) ) ) {
warehouseEntity . setWithinThirtyPrice ( Convert . toDouble ( basicExcel . getWithinThirtyPrice ( ) ) ) ;
entity . setCostType ( CostTypeEnums . NOMAL . getCode ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
entity . setType ( IDict . getCodeByText ( DispatchPricingTypeEnums . class , basicExcel . getDispatchUnit ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getBetweenThirtySixtyPrice ( ) ) ) {
warehouseEntity . setBetweenThirtySixtyPrice ( Convert . toDouble ( basicExcel . getBetweenThirtySixtyPrice ( ) ) ) ;
entity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchPrice ( ) ) ) {
entity . setPrice ( Convert . toDouble ( basicExcel . getDispatchPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getBeyondSixty Price ( ) ) ) {
war ehouseE ntity. setBeyondSixty Price ( Convert . toDouble ( basicExcel . getBeyondSixty Price ( ) ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchLeaveBehind Price ( ) ) ) {
entity . setLeaveBehind Price ( Convert . toDouble ( basicExcel . getDispatchLeaveBehind Price ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getBeyondNinetyPrice ( ) ) ) {
warehouseEntity . setBeyondNinetyPrice ( Convert . toDouble ( basicExcel . getBeyondNinetyPrice ( ) ) ) ;
}
private void buildSaveWarehouseAddExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceCategoryWarehouseEntity > warehouseAddEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity ) {
// 仓储是否附加费
Integer warehouseIsAddFee = templateEntity . getWarehouseIsAddFee ( ) ;
if ( ObjectUtil . isEmpty ( warehouseIsAddFee ) | | ObjectUtil . equal ( warehouseIsAddFee , BooleanZeroOneEnums . NO . getCode ( ) ) ) {
return ;
}
String warehouseOperatePrice = basicExcel . getWarehouseOperatePrice ( ) ;
String warehouseManagementPrice = basicExcel . getWarehouseManagementPrice ( ) ;
String warehouseSortPrice = basicExcel . getWarehouseSortPrice ( ) ;
if ( ( ObjectUtil . isNotEmpty ( warehouseOperatePrice ) & & Convert . toDouble ( warehouseOperatePrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( warehouseManagementPrice ) & & Convert . toDouble ( warehouseManagementPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( warehouseSortPrice ) & & Convert . toDouble ( warehouseSortPrice ) > 0 ) ) {
Integer pickupIsByCategory = templateEntity . getWarehouseIsCategorySubjoin ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
BasicdataPriceCategoryWarehouseEntity warehouseEntity = null ;
if ( categoryFlag ) {
if ( warehouseAddEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
warehouseEntity = warehouseAddEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
if ( warehouseAddEntityMap . containsKey ( key ) ) {
warehouseEntity = warehouseAddEntityMap . get ( key ) ;
} else {
warehouseEntity = new BasicdataPriceCategoryWarehouseEntity ( ) ;
warehouseAddEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , warehouseEntity ) ;
warehouseAddEntityMap . put ( key , warehouseEntity ) ;
}
} else {
if ( warehouseAddEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
warehouseEntity = warehouseAddEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
key = key + basicExcel . getDispatchUnit ( ) ;
}
if ( warehouseAddEntityMap . containsKey ( key ) ) {
warehouseEntity = warehouseAddEntityMap . get ( key ) ;
} else {
warehouseEntity = new BasicdataPriceCategoryWarehouseEntity ( ) ;
warehouseAddEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , warehouseEntity ) ;
warehouseAddEntityMap . put ( key , warehouseEntity ) ;
}
}
if ( ObjectUtil . isNotEmpty ( priceEntity ) ) {
@ -2062,133 +2065,240 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
warehouseEntity . setWarehouseSortPrice ( Convert . toDouble ( basicExcel . getWarehouseSortPrice ( ) ) ) ;
}
}
String dispatchPrice = basicExcel . getDispatchPrice ( ) ;
if ( StrUtil . isNotEmpty ( dispatchPrice ) & & Convert . toDouble ( dispatchPrice ) > 0 ) {
Integer pickupIsByCategory = templateEntity . getDispatch IsByCategory ( ) ;
private void buildSaveWarehouseExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceCategoryWarehouseEntity > warehouseEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity ) {
Integer pickupIsByCategory = templateEntity . getWarehouse IsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
BasicdataPriceCategoryDispatchEntity e ntity = null ;
BasicdataPriceCategoryWarehouseEntity warehouseE ntity = null ;
if ( categoryFlag ) {
if ( dispatch EntityMap. containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
entity = dispatch EntityMap. get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
if ( warehouse EntityMap. containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
war ehouseE ntity = warehouse EntityMap. get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
} else {
entity = new BasicdataPriceCategoryDispatch Entity ( ) ;
dispatch EntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , entity ) ;
war ehouseE ntity = new BasicdataPriceCategoryWarehouse Entity ( ) ;
warehouse EntityMap. put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , war ehouseE ntity) ;
}
} else {
if ( dispatch EntityMap. containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
entity = dispatch EntityMap. get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
if ( warehouse EntityMap. containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
war ehouseE ntity = warehouse EntityMap. get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
} else {
entity = new BasicdataPriceCategoryDispatch Entity ( ) ;
dispatch EntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , entity ) ;
war ehouseE ntity = new BasicdataPriceCategoryWarehouse Entity ( ) ;
warehouse EntityMap. put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , war ehouseE ntity) ;
}
}
if ( ObjectUtil . isNotEmpty ( priceEntity ) ) {
entity . setPriceId ( priceEntity . getId ( ) ) ;
entity . setBoId ( priceEntity . getId ( ) ) ;
war ehouseE ntity. setPriceId ( priceEntity . getId ( ) ) ;
war ehouseE ntity. setBoId ( priceEntity . getId ( ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
BasicdataCategoryEntity basicdataCategoryEntity = categoryEntityMap . get ( basicExcel . getCategory ( ) ) ;
if ( ObjectUtil . isNotEmpty ( basicdataCategoryEntity ) ) {
if ( categoryFlag ) {
entity . setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
war ehouseE ntity. setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
}
}
}
entity . setCostType ( CostTypeEnums . NOMAL . getCode ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
entity . setType ( IDict . getCodeByText ( DispatchPricingTypeEnums . class , basicExcel . getDispatchUnit ( ) ) ) ;
warehouseEntity . setCostType ( CostTypeEnums . NOMAL . getCode ( ) ) ;
warehouseEntity . setType ( Convert . toInt ( templateEntity . getWarehousePricingType ( ) ) ) ;
warehouseEntity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getWithinThirtyPrice ( ) ) ) {
warehouseEntity . setWithinThirtyPrice ( Convert . toDouble ( basicExcel . getWithinThirtyPrice ( ) ) ) ;
}
entity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchPrice ( ) ) ) {
entity . setPrice ( Convert . toDouble ( basicExcel . getDispatchPrice ( ) ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getBetweenThirtySixtyPrice ( ) ) ) {
warehouseEntity . setBetweenThirtySixtyPrice ( Convert . toDouble ( basicExcel . getBetweenThirtySixtyPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchLeaveBehind Price ( ) ) ) {
entity . setLeaveBehind Price ( Convert . toDouble ( basicExcel . getDispatchLeaveBehind Price ( ) ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getBeyondSixty Price ( ) ) ) {
war ehouseE ntity. setBeyondSixty Price ( Convert . toDouble ( basicExcel . getBeyondSixty Price ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getBeyondNinetyPrice ( ) ) ) {
warehouseEntity . setBeyondNinetyPrice ( Convert . toDouble ( basicExcel . getBeyondNinetyPrice ( ) ) ) ;
}
String dispatchSortPrice = basicExcel . getDispatchSortPrice ( ) ;
String dispatchHandlingPrice = basicExcel . getDispatchHandlingPrice ( ) ;
String dispatchRelocationPrice = basicExcel . getDispatchRelocationPrice ( ) ;
String dispatchDeliveryPrice = basicExcel . getDispatchDeliveryPrice ( ) ;
if ( ( ObjectUtil . isNotEmpty ( dispatchSortPrice ) & & Convert . toDouble ( dispatchSortPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchHandlingPrice ) & & Convert . toDouble ( dispatchHandlingPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchRelocationPrice ) & & Convert . toDouble ( dispatchRelocationPrice ) > 0 )
| | ( ObjectUtil . isNotEmpty ( dispatchDeliveryPrice ) & & Convert . toDouble ( dispatchDeliveryPrice ) > 0 ) ) {
Integer pickupIsByCategory = templateEntity . getDispatchIsByCategory ( ) ;
}
private void buildSaveTrunkLineExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceRouteEntity > routeEntityMap , Map < String , BasicdataPriceCategoryBasicEntity > trunkLineEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity , Integer trunklineIsUnifyAreaBill , String trunkLinePrice ) {
Long routeId = null ;
Integer pickupIsByCategory = templateEntity . getTrunklineIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
BasicdataPriceCategoryDispatchEntity entity = null ;
if ( categoryFlag ) {
if ( dispatchAddEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ) {
entity = dispatchAddEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ) ;
// 按区域计费 有路径的
boolean b = ObjectUtil . isNotEmpty ( trunklineIsUnifyAreaBill ) & & ObjectUtil . equal ( trunklineIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceCategoryBasicEntity basicEntity = null ;
if ( b ) {
if ( ! ObjectUtil . isAllEmpty ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getSendOrg ( ) ) ) {
String key = buildRoutKeyV2 ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getStartProvince ( ) ,
basicExcel . getStartCity ( ) , basicExcel . getStartArea ( ) , basicExcel . getEndProvince ( ) ,
basicExcel . getEndCity ( ) , basicExcel . getEndArea ( ) , basicExcel . getSendOrg ( ) , "2" ) ;
BasicdataPriceRouteEntity routeEntity = routeEntityMap . get ( key ) ;
if ( ObjectUtil . isNotEmpty ( routeEntity ) ) {
routeId = routeEntity . getId ( ) ;
}
}
}
if ( b & & categoryFlag ) {
// 有路径按品类计费
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
key = key + basicExcel . getTrunkLineUnit ( ) ;
}
if ( trunkLineEntityMap . containsKey ( key ) ) {
basicEntity = trunkLineEntityMap . get ( key ) ;
} else {
entity = new BasicdataPriceCategoryDispatchEntity ( ) ;
dispatchAddEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) , entity ) ;
basicE ntity = new BasicdataPriceCategoryBasic Entity ( ) ;
trunkLine EntityMap. put ( key , basicE ntity) ;
}
} else if ( b & & ! categoryFlag ) {
// 有路径不按品类计费,一个客户一条路径一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ;
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
key = key + basicExcel . getTrunkLineUnit ( ) ;
}
if ( trunkLineEntityMap . containsKey ( key ) ) {
basicEntity = trunkLineEntityMap . get ( key ) ;
} else {
if ( dispatchAddEntityMap . containsKey ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ) {
entity = dispatchAddEntityMap . get ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) ) ;
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
trunkLineEntityMap . put ( key , basicEntity ) ;
}
} else if ( ! b & & categoryFlag ) {
// 没路径 按品类计费 一个客户一个品类一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
key = key + basicExcel . getTrunkLineUnit ( ) ;
}
if ( trunkLineEntityMap . containsKey ( key ) ) {
basicEntity = trunkLineEntityMap . get ( key ) ;
} else {
entity = new BasicdataPriceCategoryDispatchEntity ( ) ;
dispatchAddEntityMap . put ( basicExcel . getClient ( ) + basicExcel . getBrand ( ) , entity ) ;
basicE ntity = new BasicdataPriceCategoryBasic Entity ( ) ;
trunkLine EntityMap. put ( key , basicE ntity) ;
}
} else {
// 没路径 不按品类计费 一个客户一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
key = key + basicExcel . getTrunkLineUnit ( ) ;
}
if ( ObjectUtil . isNotEmpty ( priceEntity ) ) {
entity . setPriceId ( priceEntity . getId ( ) ) ;
entity . setBoId ( priceEntity . getId ( ) ) ;
if ( trunkLineEntityMap . containsKey ( key ) ) {
basicEntity = trunkLineEntityMap . get ( key ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
trunkLineEntityMap . put ( key , basicEntity ) ;
}
}
// 按区域计费
if ( b ) {
basicEntity . setBoId ( routeId ) ;
} else {
basicEntity . setBoId ( priceEntity . getId ( ) ) ;
}
basicEntity . setServiceType ( ServiceTypeEnums . TRUNK_LINE . getCode ( ) ) ;
// 计费类型
if ( StrUtil . isNotEmpty ( basicExcel . getTrunkLineUnit ( ) ) ) {
basicEntity . setType ( IDict . getCodeByText ( TrunkLinePricingTypeEnums . class , basicExcel . getTrunkLineUnit ( ) ) ) ;
}
basicEntity . setPriceId ( priceEntity . getId ( ) ) ;
// 品类
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
BasicdataCategoryEntity basicdataCategoryEntity = categoryEntityMap . get ( basicExcel . getCategory ( ) ) ;
if ( ObjectUtil . isNotEmpty ( basicdataCategoryEntity ) ) {
if ( ObjectUtil . isNotEmpty ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) ) ) {
if ( categoryFlag ) {
entity . setCategoryId ( basicdataCategoryEntity . getId ( ) ) ;
basicE ntity. setCategoryId ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) . getId ( ) ) ;
}
}
}
entity . setCostType ( CostTypeEnums . ADD . getCode ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchUnit ( ) ) ) {
entity . setType ( IDict . getCodeByText ( DispatchPricingTypeEnums . class , basicExcel . getDispatchUnit ( ) ) ) ;
// 价格
basicEntity . setPrice ( Convert . toDouble ( trunkLinePrice ) ) ;
}
entity . setServiceType ( 1 ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchSortPrice ( ) ) ) {
entity . setSortPrice ( Convert . toDouble ( basicExcel . getDispatchSortPrice ( ) ) ) ;
private void buildSaveBasicExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , Map < String , BasicdataPriceRouteEntity > routeEntityMap , Map < String , BasicdataPriceCategoryBasicEntity > pickupEntityMap , BasicdataPriceCategoryV2Excel basicExcel , BasicdataPriceEntity priceEntity , BasicdataPriceTemplateEntity templateEntity , Integer pickupIsUnifyAreaBill , String pickupPrice ) {
Long routeId = null ;
Integer pickupIsByCategory = templateEntity . getPickupIsByCategory ( ) ;
// 按品类计费
boolean categoryFlag = ObjectUtil . isNotEmpty ( pickupIsByCategory ) & & ObjectUtil . equal ( pickupIsByCategory , BooleanZeroOneEnums . YES . getCode ( ) ) ;
// 按区域计费 有路径的
boolean b = ObjectUtil . isNotEmpty ( pickupIsUnifyAreaBill ) & & ObjectUtil . equal ( pickupIsUnifyAreaBill , BooleanZeroOneEnums . NO . getCode ( ) ) ;
BasicdataPriceCategoryBasicEntity basicEntity = null ;
if ( b ) {
if ( ! ObjectUtil . isAllEmpty ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getSendOrg ( ) ) ) {
String key = buildRoutKeyV2 ( basicExcel . getClient ( ) , basicExcel . getBrand ( ) , basicExcel . getStartProvince ( ) ,
basicExcel . getStartCity ( ) , basicExcel . getStartArea ( ) , basicExcel . getEndProvince ( ) ,
basicExcel . getEndCity ( ) , basicExcel . getEndArea ( ) , basicExcel . getSendOrg ( ) , "1" ) ;
BasicdataPriceRouteEntity routeEntity = routeEntityMap . get ( key ) ;
if ( ObjectUtil . isNotEmpty ( routeEntity ) ) {
routeId = routeEntity . getId ( ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchHandlingPrice ( ) ) ) {
entity . setHandlingPrice ( Convert . toDouble ( basicExcel . getDispatchHandlingPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchRelocationPrice ( ) ) ) {
entity . setRelocationPrice ( Convert . toDouble ( basicExcel . getDispatchRelocationPrice ( ) ) ) ;
}
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchDeliveryPrice ( ) ) ) {
entity . setUpstairsDeliveryPrice ( Convert . toDouble ( basicExcel . getDispatchDeliveryPrice ( ) ) ) ;
if ( b & & categoryFlag ) {
// 有路径按品类计费 一个客户一条路径一个品类一种计价方式一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
key = key + basicExcel . getPickupUnit ( ) ;
}
if ( pickupEntityMap . containsKey ( key ) ) {
basicEntity = pickupEntityMap . get ( key ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( key , basicEntity ) ;
}
String dispatchStairsCarryingCharge = basicExcel . getDispatchStairsCarryingCharge ( ) ;
if ( StrUtil . isNotEmpty ( dispatchStairsCarryingCharge ) ) {
priceEntity . setDispatchStairsCarryingCharge ( Convert . toInt ( dispatchStairsCarryingCharge ) ) ;
} else if ( b & & ! categoryFlag ) {
// 有路径不按品类计费,一个客户一条路径一种计价方式一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + routeId ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
key = key + basicExcel . getPickupUnit ( ) ;
}
if ( pickupEntityMap . containsKey ( key ) ) {
basicEntity = pickupEntityMap . get ( key ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( key , basicEntity ) ;
}
if ( CollUtil . isNotEmpty ( pickupEntityMap ) ) {
basicEntities . addAll ( pickupEntityMap . values ( ) ) ;
} else if ( ! b & & categoryFlag ) {
// 没路径 按品类计费 一个客户一个品类一种计价方式一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) + basicExcel . getCategory ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
key = key + basicExcel . getPickupUnit ( ) ;
}
if ( CollUtil . isNotEmpty ( trunkLineEntityMap ) ) {
basicEntities . addAll ( trunkLineEntityMap . values ( ) ) ;
if ( pickupEntityMap . containsKey ( key ) ) {
basicEntity = pickupEntityMap . get ( key ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( key , basicEntity ) ;
}
if ( CollUtil . isNotEmpty ( warehouseEntityMap ) ) {
warehouseEntities . addAll ( warehouseEntityMap . values ( ) ) ;
} else {
// 没路径 不按品类计费 一个客户一个计价方式一个价格
String key = basicExcel . getClient ( ) + basicExcel . getBrand ( ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
key = key + basicExcel . getPickupUnit ( ) ;
}
if ( CollUtil . isNotEmpty ( warehouseAddEntityMap ) ) {
warehouseEntities . addAll ( warehouseAddEntityMap . values ( ) ) ;
if ( pickupEntityMap . containsKey ( key ) ) {
basicEntity = pickupEntityMap . get ( key ) ;
} else {
basicEntity = new BasicdataPriceCategoryBasicEntity ( ) ;
pickupEntityMap . put ( key , basicEntity ) ;
}
if ( CollUtil . isNotEmpty ( dispatchEntityMap ) ) {
dispatchEntities . addAll ( dispatchEntityMap . values ( ) ) ;
}
if ( CollUtil . isNotEmpty ( dispatchAddEntityMap ) ) {
dispatchEntities . addAll ( dispatchAddEntityMap . values ( ) ) ;
// 按区域计费
if ( b ) {
basicEntity . setBoId ( routeId ) ;
} else {
basicEntity . setBoId ( priceEntity . getId ( ) ) ;
}
basicEntity . setServiceType ( ServiceTypeEnums . PICK_UP . getCode ( ) ) ;
// 计费类型
if ( StrUtil . isNotEmpty ( basicExcel . getPickupUnit ( ) ) ) {
basicEntity . setType ( IDict . getCodeByText ( PickupPricingTypeEnums . class , basicExcel . getPickupUnit ( ) ) ) ;
}
basicEntity . setPriceId ( priceEntity . getId ( ) ) ;
// 品类
if ( StrUtil . isNotEmpty ( basicExcel . getCategory ( ) ) ) {
if ( ObjectUtil . isNotEmpty ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) ) ) {
if ( categoryFlag ) {
basicEntity . setCategoryId ( categoryEntityMap . get ( basicExcel . getCategory ( ) ) . getId ( ) ) ;
}
}
}
// 价格
basicEntity . setPrice ( Convert . toDouble ( pickupPrice ) ) ;
}
private void setStarProvinceExcel ( Map < String , String > provinceMap , BasicdataPriceRouteEntity routeEntity , String province ) {
if ( StrUtil . isNotEmpty ( provinceMap . get ( province ) ) ) {
@ -2712,7 +2822,13 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
// 校验价格,不能为空,只能是数字
checkPrice ( rowMessage , "【提货-单价】只能为数字" , basicExcel . getPickupPrice ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupPrice ( ) ) ) {
checkDataNotEmpty ( rowMessage , "提货-单位" , basicExcel . getPickupUnit ( ) ) ;
}
checkPrice ( rowMessage , "【干线-单价】只能为数字" , basicExcel . getTrunkLinePrice ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getPickupPrice ( ) ) ) {
checkDataNotEmpty ( rowMessage , "干线-单位" , basicExcel . getTrunkLineUnit ( ) ) ;
}
checkPrice ( rowMessage , "【仓储-30天内】只能为数字" , basicExcel . getWithinThirtyPrice ( ) ) ;
checkPrice ( rowMessage , "【仓储-30-60天】只能为数字" , basicExcel . getBetweenThirtySixtyPrice ( ) ) ;
checkPrice ( rowMessage , "【仓储-60-90天】只能为数字" , basicExcel . getBeyondSixtyPrice ( ) ) ;
@ -2721,6 +2837,9 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
checkPrice ( rowMessage , "【仓储附加费-仓储管理费】只能为数字" , basicExcel . getWarehouseManagementPrice ( ) ) ;
checkPrice ( rowMessage , "【仓储附加费-仓储分货费】只能为数字" , basicExcel . getWarehouseSortPrice ( ) ) ;
checkPrice ( rowMessage , "【配送-一般单价】只能为数字" , basicExcel . getDispatchPrice ( ) ) ;
if ( StrUtil . isNotEmpty ( basicExcel . getDispatchPrice ( ) ) ) {
checkDataNotEmpty ( rowMessage , "配送-单位" , basicExcel . getDispatchUnit ( ) ) ;
}
checkPrice ( rowMessage , "【配送-遗留单价】只能为数字" , basicExcel . getDispatchLeaveBehindPrice ( ) ) ;
checkPrice ( rowMessage , "【配送附加费-分货费】只能为数字" , basicExcel . getDispatchSortPrice ( ) ) ;
checkPrice ( rowMessage , "【配送附加费-操作/装卸费价格】只能为数字" , basicExcel . getDispatchHandlingPrice ( ) ) ;
@ -2781,6 +2900,12 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
}
}
private void checkDataNotEmpty ( StringBuilder rowMessage , String columnName , String data ) {
if ( StrUtil . isEmpty ( data ) ) {
rowMessage . append ( columnName ) . append ( "不能为空;" ) ;
}
}
private void checkCategoryExcel ( Map < String , BasicdataCategoryEntity > categoryEntityMap , StringBuilder rowMessage , String category ) {
if ( StrUtil . isNotEmpty ( category ) ) {
if ( ! categoryEntityMap . containsKey ( category ) ) {
@ -3745,7 +3870,7 @@ public class BasicdataPriceServiceImpl extends BaseServiceImpl<BasicdataPriceMap
if ( pickupPricingType . contains ( PickupPricingTypeEnums . PIECE . getCode ( ) . toString ( ) ) ) {
List < BasicdataPriceCategoryBasicEntity > categoryBasicEntityList = categoryBasicMap . get ( PickupPricingTypeEnums . PIECE . getCode ( ) ) ;
if ( CollUtil . isNotEmpty ( categoryBasicEntityList ) ) {
List < PriceBasicVO > basicVOS = categoryBasicEntitie s . stream ( ) . map ( item - > {
List < PriceBasicVO > basicVOS = categoryBasicEntityL ist . stream ( ) . map ( item - > {
PriceBasicVO basicVO = new PriceBasicVO ( ) ;
BeanUtil . copyProperties ( item , basicVO ) ;
return basicVO ;