|
|
@ -938,11 +938,12 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
if (item.field == 'orderType') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 编辑---taxRate税率\beforeTaxAmount未税金额\totalTaxAmount税额\goldenTaxInvoiceNumber金税票号\invoiceTime发票日期 |
|
|
|
if ( |
|
|
|
item.field == 'taxRate' || |
|
|
|
item.field == 'beforeTaxAmount' || |
|
|
|
// item.field == 'beforeTaxAmount' || |
|
|
|
item.field == 'totalTaxAmount' || |
|
|
|
item.field == 'goldenTaxInvoiceNumber' || |
|
|
|
item.field == 'invoiceTime' |
|
|
@ -953,6 +954,12 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 发票未税金额 |
|
|
|
if (item.field == 'beforeTaxAmount') { |
|
|
|
item.componentProps.disabled = true |
|
|
|
} |
|
|
|
|
|
|
|
// 编辑---procurementCreator采购审批人、discountAmount1折扣金额 |
|
|
|
if (item.field == 'procurementCreator' || item.field == 'discountAmount1') { |
|
|
|
if (row.status == '1' || row.status == '6') { |
|
|
@ -979,6 +986,7 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
if (item.field == 'orderType') { |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
|
|
|
|
// 税率 \采购价格审批人 \未税金额 \税额\金税票号\开票日期\折扣金额 |
|
|
|
if ( |
|
|
|
item.field == 'taxRate' || |
|
|
@ -992,6 +1000,10 @@ const openForm = async (type: string, row?: any) => { |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
|
|
|
|
// 发票未税金额 |
|
|
|
if (item.field == 'beforeTaxAmount') { |
|
|
|
item.componentProps.disabled = false |
|
|
|
} |
|
|
|
// if (item.field == 'procurementCreator') { |
|
|
|
// item.componentProps.options = procurementCreators.value |
|
|
|
|
|
|
|