|
|
@@ -251,11 +251,11 @@ public class OrderImport extends Controller {
|
|
|
// 商品信息
|
|
|
Row itemRow = getItemRow(row.getLong("itemid"));
|
|
|
if(itemRow.getBoolean("iscustomsize")){
|
|
|
- sqlFactoryupload.addParameter("length", row.getLong("length"));
|
|
|
- sqlFactoryupload.addParameter("width", row.getLong("width"));
|
|
|
+ sqlFactoryupload.addParameter("length", row.getDouble("length"));
|
|
|
+ sqlFactoryupload.addParameter("width", row.getDouble("width"));
|
|
|
}else{
|
|
|
- sqlFactoryupload.addParameter("length", itemRow.getLong("length"));
|
|
|
- sqlFactoryupload.addParameter("width", itemRow.getLong("width"));
|
|
|
+ sqlFactoryupload.addParameter("length", itemRow.getDouble("length"));
|
|
|
+ sqlFactoryupload.addParameter("width", itemRow.getDouble("width"));
|
|
|
}
|
|
|
|
|
|
|