|
|
@@ -414,12 +414,20 @@ public class OrderItemsHelper extends BaseClass {
|
|
|
if (!customschemeItem.getString("value").equals("spec")) {
|
|
|
customproperties.add(customschemeItem.getString("description") + ":" + itemRowsMap.get(itemid).get(0).getString(customschemeItem.getString("value")));
|
|
|
} else {
|
|
|
- customproperties.add("尺寸:" + item.getStringValue("length") + "*" + item.getStringValue("width"));
|
|
|
+ String material = "选项:" + item.getStringValue("material");
|
|
|
+ String colors = "颜色:" + item.getStringValue("colors");
|
|
|
+ String cheek = "工艺:" + item.getStringValue("cheek");
|
|
|
+ String size = "尺寸:" + item.getStringValue("length") + "*" + item.getStringValue("width");
|
|
|
+ customproperties.add(material +";"+ colors+";"+ cheek +";"+ size);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
} else {
|
|
|
- customproperties.add("尺寸:" + item.getStringValue("length") + "*" + item.getStringValue("width"));
|
|
|
+ String material = "选项:" + item.getStringValue("material");
|
|
|
+ String colors = "颜色:" + item.getStringValue("colors");
|
|
|
+ String cheek = "工艺:" + item.getStringValue("cheek");
|
|
|
+ String size = "尺寸:" + item.getStringValue("length") + "*" + item.getStringValue("width");
|
|
|
+ customproperties.add(material +";"+ colors+";"+ cheek +";"+ size);
|
|
|
}
|
|
|
}
|
|
|
|