增加销售订单与采购订单的关联,优化分批入出库的交互

This commit is contained in:
季圣华
2022-05-18 00:21:43 +08:00
parent 3438524a47
commit 951793d396
8 changed files with 376 additions and 169 deletions

View File

@@ -127,6 +127,11 @@
<a-tag v-if="status == '2'" color="cyan">完成销售</a-tag>
<a-tag v-if="status == '3'" color="blue">部分销售</a-tag>
</template>
<template slot="customRenderPurchaseStatus" slot-scope="purchaseStatus">
<a-tag v-if="purchaseStatus == '0'" color="red">未采购</a-tag>
<a-tag v-if="purchaseStatus == '2'" color="cyan">完成采购</a-tag>
<a-tag v-if="purchaseStatus == '3'" color="blue">部分采购</a-tag>
</template>
</a-table>
</div>
<!-- table区域-end -->
@@ -208,6 +213,9 @@
{ title: '状态', dataIndex: 'status', width: 70, align: "center",
scopedSlots: { customRender: 'customRenderStatus' }
},
{ title: '采购状态', dataIndex: 'purchaseStatus', width: 70, align: "center",
scopedSlots: { customRender: 'customRenderPurchaseStatus' }
},
{
title: '操作',
dataIndex: 'action',