|
|
@@ -537,13 +537,13 @@ class OrderDetailData {
|
|
|
createTime:json['createTime'],
|
|
|
orderNo: json['orderNo'],
|
|
|
goods: json['goods'],
|
|
|
- goodsAgencyFund: json['goodsAgencyFund'],
|
|
|
+ goodsAgencyFund: json['goodsAgencyFund'] ?? 0,
|
|
|
goodsCategoryId:json['goodsCategoryId'],
|
|
|
goodsCategoryName:json['goodsCategoryName'],
|
|
|
- goodsFlatCost: json['goodsFlatCost'],
|
|
|
- goodsFreight: json['goodsFreight'],
|
|
|
+ goodsFlatCost: json['goodsFlatCost'] ?? 0,
|
|
|
+ goodsFreight: json['goodsFreight'] ?? 0,
|
|
|
goodsInsurance: json['goodsInsurance'],
|
|
|
- goodsOtherFees: json['goodsOtherFees'],
|
|
|
+ goodsOtherFees: json['goodsOtherFees'] ?? 0,
|
|
|
goodsPackingId:json['goodsPackingId'],
|
|
|
goodsPackingName:json['goodsPackingName'],
|
|
|
goodsPriceProtection: json['goodsPriceProtection'],
|
|
|
@@ -555,7 +555,7 @@ class OrderDetailData {
|
|
|
lineCode:json['lineCode'],
|
|
|
lineId:json['lineId'],
|
|
|
lineName:json['lineName'],
|
|
|
- memo: json['memo'],
|
|
|
+ memo: json['memo'] ?? '',
|
|
|
orderStatus: json['orderStatus'],
|
|
|
receiptCompanyAddress: json['receiptCompanyAddress'],
|
|
|
receiptCompanyAreaCode: json['receiptCompanyAreaCode'],
|