cz 2 anni fa
parent
commit
99be4ebfc8
1 ha cambiato i file con 25 aggiunte e 0 eliminazioni
  1. 25 0
      src/components/purchase/details.vue

+ 25 - 0
src/components/purchase/details.vue

@@ -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"