Commit da7ea43b by Sixong.Zhu

u

parent 09282eaa
...@@ -28,7 +28,7 @@ class OrderService { ...@@ -28,7 +28,7 @@ class OrderService {
} }
public openOrder(params: { public openOrder(params: {
productId: string | number; productCode: string;
srcPlatform: SrcPlatform; srcPlatform: SrcPlatform;
createdType: OperationType; createdType: OperationType;
/** /**
...@@ -40,7 +40,7 @@ class OrderService { ...@@ -40,7 +40,7 @@ class OrderService {
.model(this.generalOrder) .model(this.generalOrder)
.action(params.forceNewOrder ? "addOrder" : 'getOrAddOrder') .action(params.forceNewOrder ? "addOrder" : 'getOrAddOrder')
.addInputs_parameter({ .addInputs_parameter({
ProductId: params.productId, ProductCode: params.productCode,
SrcPlatform: params.srcPlatform, SrcPlatform: params.srcPlatform,
CreatedType: params.createdType, CreatedType: params.createdType,
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment