|
|
|
@ -87,11 +87,11 @@ |
|
|
|
<span>{{ scope.row.adjustLabourCost | numberFormat }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="adjustMachineCost" label="机器成本" width="120" align="right"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.adjustMachineCost | numberFormat }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<!-- <el-table-column prop="adjustMachineCost" label="机器成本" width="120" align="right">--> |
|
|
|
<!-- <template slot-scope="scope">--> |
|
|
|
<!-- <span>{{ scope.row.adjustMachineCost | numberFormat }}</span>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </el-table-column>--> |
|
|
|
<el-table-column prop="adjustToolCost" label="工具成本" width="120" align="right"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.adjustToolCost | numberFormat }}</span> |
|
|
|
@ -137,11 +137,11 @@ |
|
|
|
<span>{{ scope.row.quoteProfitAmount | numberFormat }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="quoteTaxRate" label="Margin%" width="100" align="right"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.quoteTaxRate | numberFormat }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<!-- <el-table-column prop="quoteTaxRate" label="Margin%" width="100" align="right">--> |
|
|
|
<!-- <template slot-scope="scope">--> |
|
|
|
<!-- <span>{{ scope.row.quoteTaxRate | numberFormat }}</span>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </el-table-column>--> |
|
|
|
<el-table-column prop="quoteTaxTotalPrice" label="Price ¥(ex VAT)" width="130" align="right"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.quoteTaxTotalPrice | numberFormat }}</span> |
|
|
|
@ -239,7 +239,7 @@ export default { |
|
|
|
if (params.quoter) params.quoter = '%' + params.quoter + '%' |
|
|
|
if (params.insideInquiryNo) params.insideInquiryNo = '%' + params.insideInquiryNo + '%' |
|
|
|
if (params.partNo) params.partNo = '%' + params.partNo + '%' |
|
|
|
|
|
|
|
|
|
|
|
queryQuoteDetailReport(params).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.dataList = data.page.list |
|
|
|
@ -278,7 +278,7 @@ export default { |
|
|
|
if (params.quoter) params.quoter = '%' + params.quoter + '%' |
|
|
|
if (params.insideInquiryNo) params.insideInquiryNo = '%' + params.insideInquiryNo + '%' |
|
|
|
if (params.partNo) params.partNo = '%' + params.partNo + '%' |
|
|
|
|
|
|
|
|
|
|
|
await queryQuoteDetailReport(params).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.exportData = data.page.list |
|
|
|
|