File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ BasketItem.body = function (data) {
1515 category2 : data [ "category2" ] ,
1616 itemType : data [ "itemType" ] ,
1717 subMerchantKey : data [ "subMerchantKey" ] ,
18- subMerchantPrice : utils . formatPrice ( data [ "subMerchantPrice" ] )
18+ subMerchantPrice : utils . formatPrice ( data [ "subMerchantPrice" ] ) ,
19+ withholdingTax : utils . formatPrice ( data [ 'withholdingTax' ] )
1920 } : undefined
2021} ;
2122
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ PaymentItem.body = function(data) {
99 ? {
1010 subMerchantKey : data [ 'subMerchantKey' ] ,
1111 paymentTransactionId : data [ 'paymentTransactionId' ] ,
12- subMerchantPrice : utils . formatPrice ( data [ 'subMerchantPrice' ] ) }
12+ subMerchantPrice : utils . formatPrice ( data [ 'subMerchantPrice' ] ) ,
13+ withholdingTax : utils . formatPrice ( data [ 'withholdingTax' ] )
14+ }
1315 : undefined ;
1416} ;
1517
You can’t perform that action at this time.
0 commit comments