离线采购到货数量查询

This commit is contained in:
chenjianan
2019-04-12 14:17:25 +08:00
parent ed273c9590
commit 1044a96c37

View File

@@ -64,24 +64,24 @@
{{ scope.row.零件数量 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="采购数量" width="100px">
<el-table-column align="center" label="合同采购数量" width="100px">
<template slot-scope="scope">
{{ scope.row.数量 || '—' }}
{{ scope.row.数量 || scope.row.离线采购数量 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="到货数量" width="100px">
<template slot-scope="scope">
{{ scope.row.已到货数量 || '—' }}
{{ scope.row.已到货数量 || scope.row.离线到货数量 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="供应商" min-width="100px">
<template slot-scope="scope">
{{ scope.row.供应商名称 || '—' }}
{{ scope.row.供应商名称 || scope.row.离线合同供应商名称 || '—' }}
</template>
</el-table-column>
<el-table-column align="center" label="采购合同编号" min-width="100px">
<el-table-column align="center" label="合同编号" min-width="100px">
<template slot-scope="scope">
{{ scope.row.采购合同编号 || '—' }}
{{ scope.row.采购合同编号 || scope.row.离线合同编号 || '—' }}
</template>
</el-table-column>
</el-table>