|
@@ -483,12 +483,20 @@ class _SendExpressPageState extends State < SendExpressPage > with AutomaticKeep
|
|
|
goodsQuantity = int.parse(value);
|
|
goodsQuantity = int.parse(value);
|
|
|
} else if (key == '运费') {
|
|
} else if (key == '运费') {
|
|
|
goodsFreight = double.parse(value);
|
|
goodsFreight = double.parse(value);
|
|
|
|
|
+ String temp =goodsFreight.toStringAsFixed(1);
|
|
|
|
|
+ goodsFreight = double.parse(temp);
|
|
|
} else if (key == '代收') {
|
|
} else if (key == '代收') {
|
|
|
goodsAgencyFund = double.parse(value);
|
|
goodsAgencyFund = double.parse(value);
|
|
|
|
|
+ String temp =goodsAgencyFund.toStringAsFixed(1);
|
|
|
|
|
+ goodsAgencyFund = double.parse(temp);
|
|
|
} else if (key == '保价') {
|
|
} else if (key == '保价') {
|
|
|
goodsPriceProtection = double.parse(value);
|
|
goodsPriceProtection = double.parse(value);
|
|
|
|
|
+ String temp =goodsPriceProtection.toStringAsFixed(1);
|
|
|
|
|
+ goodsPriceProtection = double.parse(temp);
|
|
|
} else if (key == '重量') {
|
|
} else if (key == '重量') {
|
|
|
goodsWeight = double.parse(value);
|
|
goodsWeight = double.parse(value);
|
|
|
|
|
+ String temp =goodsWeight.toStringAsFixed(1);
|
|
|
|
|
+ goodsWeight = double.parse(temp);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|