|
@@ -265,6 +265,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
Integer num = jsonObject.getInteger("num");
|
|
Integer num = jsonObject.getInteger("num");
|
|
Long statDate = jsonObject.getLong("statDate");
|
|
Long statDate = jsonObject.getLong("statDate");
|
|
Long orderTemp = jsonObject.getLong("orderTemp");
|
|
Long orderTemp = jsonObject.getLong("orderTemp");
|
|
|
|
+ Long sendTime = jsonObject.getLong("sendTime");
|
|
for (int j = 0; j < num; j++) {
|
|
for (int j = 0; j < num; j++) {
|
|
KwaixiaodianCostDetail addJson = new KwaixiaodianCostDetail();
|
|
KwaixiaodianCostDetail addJson = new KwaixiaodianCostDetail();
|
|
addJson.setCompanyId(companyId);
|
|
addJson.setCompanyId(companyId);
|
|
@@ -276,6 +277,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
addJson.setOrderTemp(orderTemp);
|
|
addJson.setOrderTemp(orderTemp);
|
|
addJson.setDataType(dataType);
|
|
addJson.setDataType(dataType);
|
|
addJson.setDataLongDate(date);
|
|
addJson.setDataLongDate(date);
|
|
|
|
+ addJson.setSendTime(sendTime);
|
|
adds.add(addJson);
|
|
adds.add(addJson);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -295,6 +297,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
Integer num = jsonObject.getInteger("num");
|
|
Integer num = jsonObject.getInteger("num");
|
|
Long statDate = jsonObject.getLong("statDate");
|
|
Long statDate = jsonObject.getLong("statDate");
|
|
Long orderTemp = jsonObject.getLong("orderTemp");
|
|
Long orderTemp = jsonObject.getLong("orderTemp");
|
|
|
|
+ Long sendTime = jsonObject.getLong("sendTime");
|
|
for (int j = 0; j < num; j++) { // 循环订单数量
|
|
for (int j = 0; j < num; j++) { // 循环订单数量
|
|
for (int k = 0; k < skuInfo.size(); k++) { // 循环此组合sku下的单品sku
|
|
for (int k = 0; k < skuInfo.size(); k++) { // 循环此组合sku下的单品sku
|
|
JSONObject skuDetailJson = skuInfo.get(k);
|
|
JSONObject skuDetailJson = skuInfo.get(k);
|
|
@@ -313,6 +316,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
addJson.setOrderTemp(orderTemp);
|
|
addJson.setOrderTemp(orderTemp);
|
|
addJson.setDataType(dataType);
|
|
addJson.setDataType(dataType);
|
|
addJson.setDataLongDate(date);
|
|
addJson.setDataLongDate(date);
|
|
|
|
+ addJson.setSendTime(sendTime);
|
|
adds.add(addJson);
|
|
adds.add(addJson);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -389,6 +393,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
String combinationSkuId = info.getString("combinationSkuId");
|
|
String combinationSkuId = info.getString("combinationSkuId");
|
|
Long statDate = info.getLong("statDate");
|
|
Long statDate = info.getLong("statDate");
|
|
Long orderTemp = info.getLong("orderTemp");
|
|
Long orderTemp = info.getLong("orderTemp");
|
|
|
|
+ Long sendTime = info.getLong("sendTime");
|
|
addCostDetailEnd.setCompanyId(companyId);
|
|
addCostDetailEnd.setCompanyId(companyId);
|
|
addCostDetailEnd.setOid(oid);
|
|
addCostDetailEnd.setOid(oid);
|
|
addCostDetailEnd.setItemId(itemId);
|
|
addCostDetailEnd.setItemId(itemId);
|
|
@@ -400,6 +405,7 @@ public class KwaiJSTServiceImpl implements IKwaiJSTService {
|
|
addCostDetailEnd.setDataType(dataType);
|
|
addCostDetailEnd.setDataType(dataType);
|
|
addCostDetailEnd.setSortNum(sortNum);
|
|
addCostDetailEnd.setSortNum(sortNum);
|
|
addCostDetailEnd.setCostPrice(price);
|
|
addCostDetailEnd.setCostPrice(price);
|
|
|
|
+ addCostDetailEnd.setSendTime(sendTime);
|
|
costDetailEnds.add(addCostDetailEnd);
|
|
costDetailEnds.add(addCostDetailEnd);
|
|
}
|
|
}
|
|
if (isBreak) {
|
|
if (isBreak) {
|