|
@@ -48,6 +48,31 @@
|
|
|
prop="purchaseQuantity"
|
|
|
width="120"
|
|
|
/>
|
|
|
+ <el-table-column label="质检数量" prop="qualityQuantity" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ {{ getQuantity(scope.row.qualityQuantity) }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="质检不合格数量"
|
|
|
+ prop="disqualificationQuantity"
|
|
|
+ min-width="150"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ {{ getQuantity(scope.row.disqualificationQuantity) }}
|
|
|
+ </div>
|
|
|
+ </template></el-table-column
|
|
|
+ >
|
|
|
+ <el-table-column label="退货" prop="backQuantity" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ {{ getQuantity(scope.row.backQuantity) }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
label="已发货"
|
|
|
prop="shipmentTotalQuantity"
|