浏览代码

出入库

tong 4 年之前
父节点
当前提交
8d7db01cf3
共有 2 个文件被更改,包括 321 次插入283 次删除
  1. 313 276
      src/views/warehouseBusiness/inStock/index.vue
  2. 8 7
      src/views/warehouseBusiness/outStock/index.vue

文件差异内容过多而无法显示
+ 313 - 276
src/views/warehouseBusiness/inStock/index.vue


+ 8 - 7
src/views/warehouseBusiness/outStock/index.vue

@@ -274,14 +274,15 @@
       <el-table-column label="出库净重" align="center" prop="fNetweight" />
       <el-table-column label="出库净重" align="center" prop="fNetweight" />
       <el-table-column
       <el-table-column
         width="100"
         width="100"
-        label="库状态"
+        label="库状态"
         align="center"
         align="center"
         prop="fItemsStatus"
         prop="fItemsStatus"
       >
       >
         <template slot-scope="scope">
         <template slot-scope="scope">
-          <span v-if="scope.row.fItemsStatus === 1">未入账</span>
-          <span v-if="scope.row.fItemsStatus === 2">部分入账</span>
-          <span v-if="scope.row.fItemsStatus === 6">全部入账</span>
+          <span v-if="scope.row.fItemsStatus === 1">计划</span>
+          <span v-if="scope.row.fItemsStatus === 2">卸货中</span>
+          <span v-if="scope.row.fItemsStatus === 3">已卸货</span>
+          <span v-if="scope.row.fItemsStatus === 4">已入库</span>
         </template>
         </template>
       </el-table-column>
       </el-table-column>
       <el-table-column
       <el-table-column
@@ -1095,8 +1096,8 @@
         >
         >
           <template slot-scope="scope">
           <template slot-scope="scope">
             <span v-if="scope.row.fBillstatus === 40">已出库</span>
             <span v-if="scope.row.fBillstatus === 40">已出库</span>
-            <span v-if="scope.row.fBillstatus === 20">待出库</span>
-            <span v-if="scope.row.fBillstatus === 30">装货中</span>
+            <span v-if="scope.row.fBillstatus === 20">卸货中</span>
+            <span v-if="scope.row.fBillstatus === 30">已卸货</span>
             <span v-if="scope.row.fBillstatus === 10">计划</span>
             <span v-if="scope.row.fBillstatus === 10">计划</span>
           </template>
           </template>
         </el-table-column>
         </el-table-column>
@@ -2551,7 +2552,7 @@ export default {
         scanStyles: false,
         scanStyles: false,
       });
       });
       this.addList();
       this.addList();
-      this.editDialogVisible_sss = false;
+      this.openPrintJobSheet = false;
     },
     },
     // 关闭二级弹窗
     // 关闭二级弹窗
     closeWindow () {
     closeWindow () {

部分文件因为文件数量过多而无法显示