Skip to content

Commit 914b90c

Browse files
committed
add: CustomerPrice
1 parent 209b5bf commit 914b90c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/Model/InputCardOrderDto.php

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public function toJson()
3939
{
4040
return json_encode([
4141
'customer_order_no' => $this->customerOrderNo,
42+
'customer_price' => $this->customerPrice,
4243
'product_id' => $this->productId,
4344
'buy_num' => $this->buyNum,
4445
]);

src/Model/InputDirectOrderDto.php

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public function toJson()
9999
{
100100
return json_encode([
101101
'customer_order_no' => $this->customerOrderNo,
102+
'customer_price' => $this->customerPrice,
102103
'product_id' => $this->productId,
103104
'buy_num' => $this->buyNum,
104105
'charge_account' => $this->chargeAccount,

0 commit comments

Comments
 (0)