|
@@ -67,7 +67,7 @@ public class LSALogisticsHelper extends BaseClass {
|
|
|
insertSQL.setValue("phonenumber", controller.content.getStringValue("phonenumber"));
|
|
|
insertSQL.setValue("delivertype", controller.content.getStringValue("delivertype"));
|
|
|
insertSQL.setValue("paytype", controller.content.getStringValue("paytype"));
|
|
|
- insertSQL.setValue("logisticsamount", controller.content.getStringValue("logisticsamount"));
|
|
|
+ insertSQL.setValue("logisticsamount", controller.content.getBigDecimalValue("logisticsamount"));
|
|
|
insertSQL.setValue("packageqty", controller.content.getStringValue("packageqty"));
|
|
|
insertSQL.setValue("weight", controller.content.getBigDecimalValue("weight"));
|
|
|
insertSQL.setValue("volume", controller.content.getBigDecimalValue("volume"));
|
|
@@ -100,7 +100,7 @@ public class LSALogisticsHelper extends BaseClass {
|
|
|
updateSQL.setWhere("sa_logisticsid", sa_logisticsid);
|
|
|
updateSQL.setValue("sys_enterpriseid", controller.content.getLongValue("sys_enterpriseid"));
|
|
|
updateSQL.setWhere("siteid", controller.siteid);
|
|
|
- updateSQL.setValue("logisticsamount", controller.content.getStringValue("logisticsamount"));
|
|
|
+ updateSQL.setValue("logisticsamount", controller.content.getBigDecimalValue("logisticsamount"));
|
|
|
updateSQL.setValue("packageqty", controller.content.getStringValue("packageqty"));
|
|
|
updateSQL.setValue("weight", controller.content.getBigDecimalValue("weight"));
|
|
|
updateSQL.setValue("volume", controller.content.getBigDecimalValue("volume"));
|