验货流程修改
This commit is contained in:
parent
268b3f852b
commit
f1885a11fb
|
|
@ -104,12 +104,14 @@
|
||||||
<span>{{ (scope.row.singlePrice/100).toFixed(2) }}</span>
|
<span>{{ (scope.row.singlePrice/100).toFixed(2) }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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">
|
<el-table-column label="总金额(元)" align="center" prop="" :show-overflow-tooltip="true">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ (scope.row.orderNum*scope.row.singlePrice/100).toFixed(2) }}</span>
|
<span>{{ (scope.row.orderNum*scope.row.singlePrice/100).toFixed(2) }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</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-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"></el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
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)"
|
@click="handlePurchaseInspection(scope.row)"
|
||||||
>生成采购验货</el-button>
|
>生成采购验货</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button size="mini" type="text"
|
<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>
|
>导入</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue