验货流程修改

This commit is contained in:
zzyuan 2025-10-22 18:14:01 +08:00
parent 268b3f852b
commit f1885a11fb
3 changed files with 5 additions and 3 deletions

View File

@ -104,12 +104,14 @@
<span>{{ (scope.row.singlePrice/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="数量" align="center" prop="orderNum" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="订货数量" align="center" prop="orderNum" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="总金额(元)" align="center" prop="" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{ (scope.row.orderNum*scope.row.singlePrice/100).toFixed(2) }}</span>
</template>
</el-table-column>
<el-table-column label="送货总数量" align="center" prop="totalDeliveryNum" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="待入库总数量" align="center" prop="totalQualifiedNum" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"></el-table-column>
</el-table>
</div>

View File

@ -177,7 +177,7 @@
<el-button
size="mini"
type="text"
icon="el-icon-edit" v-if="scope.row.orderStatus==2"
icon="el-icon-edit" v-if="scope.row.orderStatus==2||scope.row.orderStatus==3"
@click="handlePurchaseInspection(scope.row)"
>生成采购验货</el-button>
<el-button

View File

@ -225,7 +225,7 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button size="mini" type="text"
@click="confirmImport(scope.row)" v-if="scope.row.orderStatus==2"
@click="confirmImport(scope.row)" v-if="scope.row.orderStatus==3"
>导入</el-button>
</template>
</el-table-column>