|
@@ -2796,7 +2796,7 @@ public class WeiXinCorpController {
|
|
}
|
|
}
|
|
wxOrder.setEditionId(orderDetail.getString("edition_id"));
|
|
wxOrder.setEditionId(orderDetail.getString("edition_id"));
|
|
wxOrder.setEditionName(orderDetail.getString("edition_name"));
|
|
wxOrder.setEditionName(orderDetail.getString("edition_name"));
|
|
- wxOrder.setPrice(orderDetail.getDouble("price"));
|
|
|
|
|
|
+ wxOrder.setPrice(orderDetail.getInteger("price"));
|
|
wxOrder.setUserCount(orderDetail.getInteger("user_count"));
|
|
wxOrder.setUserCount(orderDetail.getInteger("user_count"));
|
|
wxOrder.setOrderPeriod(orderDetail.getInteger("order_period"));
|
|
wxOrder.setOrderPeriod(orderDetail.getInteger("order_period"));
|
|
LocalDateTime order_time =LocalDateTime.ofEpochSecond(orderDetail.getLong("order_time"),0,ZoneOffset.ofHours(8));
|
|
LocalDateTime order_time =LocalDateTime.ofEpochSecond(orderDetail.getLong("order_time"),0,ZoneOffset.ofHours(8));
|
|
@@ -2815,9 +2815,9 @@ public class WeiXinCorpController {
|
|
}
|
|
}
|
|
wxOrder.setOrderFrom(orderDetail.getInteger("order_from"));
|
|
wxOrder.setOrderFrom(orderDetail.getInteger("order_from"));
|
|
wxOrder.setOperatorCorpid(orderDetail.getString("operator_corpid"));
|
|
wxOrder.setOperatorCorpid(orderDetail.getString("operator_corpid"));
|
|
- wxOrder.setServiceShareAmount(orderDetail.getString("service_share_amount"));
|
|
|
|
- wxOrder.setPlatformShareAmount(orderDetail.getString("platform_share_amount"));
|
|
|
|
- wxOrder.setDealerShareAmount(orderDetail.getString("dealer_share_amount"));
|
|
|
|
|
|
+ wxOrder.setServiceShareAmount(orderDetail.getInteger("service_share_amount"));
|
|
|
|
+ wxOrder.setPlatformShareAmount(orderDetail.getInteger("platform_share_amount"));
|
|
|
|
+ wxOrder.setDealerShareAmount(orderDetail.getInteger("dealer_share_amount"));
|
|
if (orderDetail.containsKey("dealer_corp_info")){
|
|
if (orderDetail.containsKey("dealer_corp_info")){
|
|
JSONObject dealer_corp_info = orderDetail.getJSONObject("dealer_corp_info");
|
|
JSONObject dealer_corp_info = orderDetail.getJSONObject("dealer_corp_info");
|
|
wxOrder.setDealerCorpid(dealer_corp_info.getString("corpid"));
|
|
wxOrder.setDealerCorpid(dealer_corp_info.getString("corpid"));
|