Ver código fonte

518合并代码

XMLWAN 2 anos atrás
pai
commit
cd6fd1b0e2
1 arquivos alterados com 11 adições e 1 exclusões
  1. 11 1
      src/xt_pages/stock/stockQuery.vue

+ 11 - 1
src/xt_pages/stock/stockQuery.vue Ver arquivo

@@ -181,7 +181,17 @@
181 181
 
182 182
        <el-table-column label="总库存量" align="center">
183 183
          <template slot-scope="scope">
184
-           {{getOverFlushInfo(scope.row.xt_warehouse_info)}}
184
+           <span v-if="org_id == 9675 || org_id == 3907 || org_id == 9583">
185
+              {{
186
+              getWareInfo(scope.row.xt_warehouse_info) -
187
+              getAutoCount(scope.row.id) -
188
+              getOutCount(scope.row.id) +
189
+              getCancelCount(scope.row.id)
190
+              }}
191
+           </span>
192
+           <span v-if="org_id != 9675 || org_id != 3907 || org_id != 9583">
193
+               {{getOverFlushInfo(scope.row.xt_warehouse_info)}}
194
+           </span>
185 195
          </template>
186 196
        </el-table-column>
187 197