|  | @@ -589,7 +589,6 @@
 | 
	
		
			
				|  |  |                />
 | 
	
		
			
				|  |  |              </el-form-item>
 | 
	
		
			
				|  |  |            </el-col>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          </el-row>
 | 
	
		
			
				|  |  |          <el-row>
 | 
	
		
			
				|  |  |            <el-col :span="8">
 | 
	
	
		
			
				|  | @@ -997,7 +996,7 @@
 | 
	
		
			
				|  |  |                         filterable
 | 
	
		
			
				|  |  |                         :disabled="browseStatus || scope.row.fBillstatus === 20 || scope.row.fBillstatus === 30 || scope.row.fBillstatus === 40"
 | 
	
		
			
				|  |  |                         :remote-method="kqhouseRemoteMethod"
 | 
	
		
			
				|  |  | -                       placeholder="请选择库区"
 | 
	
		
			
				|  |  | +                       placeholder="请选择业务类型"
 | 
	
		
			
				|  |  |              >
 | 
	
		
			
				|  |  |                <el-option
 | 
	
		
			
				|  |  |                  v-for="(dict, index) in fStorageTypeOptions"
 | 
	
	
		
			
				|  | @@ -1175,7 +1174,6 @@
 | 
	
		
			
				|  |  |              />
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          <el-table-column
 | 
	
		
			
				|  |  |            prop="fTruckno"
 | 
	
		
			
				|  |  |            header-align="center"
 | 
	
	
		
			
				|  | @@ -1197,7 +1195,6 @@
 | 
	
		
			
				|  |  |              />
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          <el-table-column
 | 
	
		
			
				|  |  |            prop="fDriverName"
 | 
	
		
			
				|  |  |            header-align="center"
 | 
	
	
		
			
				|  | @@ -1241,7 +1238,6 @@
 | 
	
		
			
				|  |  |              />
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          <el-table-column
 | 
	
		
			
				|  |  |            prop="fDriverIdCar"
 | 
	
		
			
				|  |  |            header-align="center"
 | 
	
	
		
			
				|  | @@ -1263,7 +1259,6 @@
 | 
	
		
			
				|  |  |              />
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          <el-table-column
 | 
	
		
			
				|  |  |            prop="fSerialNumber"
 | 
	
		
			
				|  |  |            header-align="center"
 | 
	
	
		
			
				|  | @@ -2088,7 +2083,7 @@
 | 
	
		
			
				|  |  |            </el-row>
 | 
	
		
			
				|  |  |          </el-form>
 | 
	
		
			
				|  |  |          <div slot="footer" class="dialog-footer">
 | 
	
		
			
				|  |  | -          <el-button type="primary" @click="costList">导入</el-button>
 | 
	
		
			
				|  |  | +          <el-button type="primary" @click="costList">导入库存明细</el-button>
 | 
	
		
			
				|  |  |            <el-button @click="weightList = false">取 消</el-button>
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  |        </el-dialog>
 | 
	
	
		
			
				|  | @@ -4349,15 +4344,20 @@ export default {
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      wDeleteRow(index, rows) {
 | 
	
		
			
				|  |  |        rows.splice(index, 1);
 | 
	
		
			
				|  |  | -      if (this.dataList) {
 | 
	
		
			
				|  |  | -        let sum = 0;
 | 
	
		
			
				|  |  | -        for (let li in this.dataList) {
 | 
	
		
			
				|  |  | -          if (this.dataList[li].fQty) {
 | 
	
		
			
				|  |  | -            sum = Number(sum) + Number(this.dataList[li].fQty);
 | 
	
		
			
				|  |  | -          }
 | 
	
		
			
				|  |  | +      if (this.dataList.length === 0) {
 | 
	
		
			
				|  |  | +        this.formBrowseStatus = false
 | 
	
		
			
				|  |  | +        return false
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  | +      let sum = 0
 | 
	
		
			
				|  |  | +      for (let li in this.dataList) {
 | 
	
		
			
				|  |  | +        if (this.dataList[li].fQty) {
 | 
	
		
			
				|  |  | +          sum = Number(sum) + Number(this.dataList[li].fQty)
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        if (this.dataList[li].fBillstatus > 10) {
 | 
	
		
			
				|  |  | +          this.formBrowseStatus = true
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | -        this.mum = sum;
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  | +      this.mum = sum
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      // 查看审批流
 | 
	
		
			
				|  |  |      getDataList() {
 |