|
@@ -399,12 +399,13 @@ const save = function () {
|
|
|
const result: any = {
|
|
|
Unit_Price: i.unit_price,
|
|
|
Quantity: i.quantity ? i.quantity.toString() : '',
|
|
|
- Sample_Fee: i.sample_fee,
|
|
|
- Setup_Service_Fee: i.setup_service_fee,
|
|
|
- Total: i.total,
|
|
|
+ Sample_Fee: i.sample_fee || 0,
|
|
|
+ Setup_Service_Fee: i.setup_service_fee || 0,
|
|
|
+ Total: i.total || 0,
|
|
|
Currency: i.currency,
|
|
|
Description: i.description,
|
|
|
PO_id: i.po_number,
|
|
|
+ SKU: i.sku,
|
|
|
Payment_Type: i.payment_type,
|
|
|
Statement: { name: i.statement_name, id: statementID.value },
|
|
|
Request_Type: '月结申请',
|