|
@@ -59,6 +59,8 @@ public class LSALogisticsHelper extends BaseClass {
|
|
|
insertSQL.setValue("county", controller.content.getStringValue("county"));
|
|
|
insertSQL.setValue("address", controller.content.getStringValue("address"));
|
|
|
insertSQL.setValue("remarks", controller.content.getStringValue("remarks"));
|
|
|
+ insertSQL.setValue("logisticsamount", controller.content.getStringValue("logisticsamount"));
|
|
|
+ insertSQL.setValue("packageqty", controller.content.getStringValue("packageqty"));
|
|
|
return insertSQL;
|
|
|
}
|
|
|
|
|
@@ -83,6 +85,8 @@ 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("packageqty", controller.content.getStringValue("packageqty"));
|
|
|
return updateSQL;
|
|
|
}
|
|
|
|