ソースを参照

//..

private_deployment
xhxu 1年前
コミット
b9a4439cc9
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      suimangCApi/src/main/java/com/iformall/controller/ProductOrderController.java

+ 2
- 2
suimangCApi/src/main/java/com/iformall/controller/ProductOrderController.java ファイルの表示

@@ -97,7 +97,7 @@ public class ProductOrderController extends BaseController {
record.setOrderStatus(EnumProductOrderStatus.ORDER_STATUS_PENDING_PAYMENT.getCode());
record.setProjectType(product.getProjectType());
// record.setPayVendor(payVendorEnum.getCode());
record.setOrderPrice(product.getPriceRmb());
record.setOrderPrice(product.getSellPriceRmb());

// record.setProfitSharing(payVendorEnum.getProfitSharing());

@@ -311,7 +311,7 @@ public class ProductOrderController extends BaseController {
record.setProductEnTitle(product.getEnTitle());
record.setOrderStatus(EnumProductOrderStatus.ORDER_STATUS_PENDING_PAYMENT.getCode());
record.setProjectType(product.getProjectType());
record.setOrderPrice(product.getPriceRmb());
record.setOrderPrice(product.getSellPriceRmb());
productOrderService.saveOrUpdate(record);

return productOrderService.createPay(record);


読み込み中…
キャンセル
保存