|
@@ -332,10 +332,10 @@ public class CustomerServiceImpl implements CustomerService {
|
|
|
CustomerCommon customerCommon = customerInfo.getCustomerCommon();
|
|
|
if(ccList.size() > 0){
|
|
|
cc = ccList.get(0);
|
|
|
- customerCommon.setRelationBackStatus(cc.getRelationBackStatus()); //寄回状态 1:未寄回
|
|
|
- customerCommon.setRelationSendStatus(cc.getRelationSendStatus()); //寄送状态 1:未寄送
|
|
|
- customerCommon.setRelationIsTransfer(cc.getRelationIsTransfer()); //是否已转账邮费
|
|
|
- customerCommon.setRelationBackPostage(cc.getRelationBackPostage()); //邮费
|
|
|
+ customerCommon.setRelationBackStatus(cc.getRelationBackStatus() == null ? 1:cc.getRelationBackStatus()); //寄回状态 1:未寄回
|
|
|
+ customerCommon.setRelationSendStatus(cc.getRelationSendStatus() == null ? 1:cc.getRelationSendStatus()); //寄送状态 1:未寄送
|
|
|
+ customerCommon.setRelationIsTransfer(cc.getRelationIsTransfer() == null ? 0:cc.getRelationIsTransfer()); //是否已转账邮费
|
|
|
+ customerCommon.setRelationBackPostage(cc.getRelationBackPostage() == null ? 0:cc.getRelationBackPostage()); //邮费
|
|
|
//旧的物流公司物流单号支付宝信息 邮费状态 efast订单号
|
|
|
customerCommon.setRelationBackLogisticsCompany(cc.getRelationBackLogisticsCompany());//寄回物流公司
|
|
|
customerCommon.setRelationBackLogisticsNo(cc.getRelationBackLogisticsNo());//寄回物流单号
|