|
@@ -129,7 +129,11 @@
|
|
<el-table-column label="资产盘点记录编号" align="center" prop="id" />
|
|
<el-table-column label="资产盘点记录编号" align="center" prop="id" />
|
|
<el-table-column label="单据编号" align="center" prop="orderNumber" />
|
|
<el-table-column label="单据编号" align="center" prop="orderNumber" />
|
|
<el-table-column label="任务名称" align="center" prop="name" />
|
|
<el-table-column label="任务名称" align="center" prop="name" />
|
|
- <el-table-column label="盘点部门" align="center" prop="inventoryDepartment" />
|
|
|
|
|
|
+ <el-table-column label="盘点部门" align="center" prop="inventoryDepartment" >
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{ scope.row.inventoryDepartment != null ? companyName(scope.row.inventoryDepartment) : ""}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="盘点人" align="center" prop="inventoryBy" />
|
|
<el-table-column label="盘点人" align="center" prop="inventoryBy" />
|
|
<el-table-column label="盘点日期" align="center" prop="inventoryDate" width="180">
|
|
<el-table-column label="盘点日期" align="center" prop="inventoryDate" width="180">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
@@ -177,7 +181,7 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
-
|
|
|
|
|
|
+
|
|
<pagination
|
|
<pagination
|
|
v-show="total>0"
|
|
v-show="total>0"
|
|
:total="total"
|
|
:total="total"
|
|
@@ -251,6 +255,7 @@
|
|
import { deptTreeSelect } from '@/api/system/user.js'
|
|
import { deptTreeSelect } from '@/api/system/user.js'
|
|
import { listInventory, getInventory, delInventory, addInventory, updateInventory } from "@/api/inventory/inventory";
|
|
import { listInventory, getInventory, delInventory, addInventory, updateInventory } from "@/api/inventory/inventory";
|
|
import { listLocation } from "@/api/asset/location";
|
|
import { listLocation } from "@/api/asset/location";
|
|
|
|
+import { listDept } from "@/api/system/dept";
|
|
import UserSearch from '@/components/SysUserSearch/index.vue'
|
|
import UserSearch from '@/components/SysUserSearch/index.vue'
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
@@ -281,6 +286,7 @@ export default {
|
|
locationList: [],
|
|
locationList: [],
|
|
// 部门树选项
|
|
// 部门树选项
|
|
deptOptions: [],
|
|
deptOptions: [],
|
|
|
|
+ arr: [],
|
|
// 弹出层标题
|
|
// 弹出层标题
|
|
title: "",
|
|
title: "",
|
|
// 是否显示弹出层
|
|
// 是否显示弹出层
|
|
@@ -346,12 +352,21 @@ export default {
|
|
listLocation().then((response) => {
|
|
listLocation().then((response) => {
|
|
this.locationList = response.rows;
|
|
this.locationList = response.rows;
|
|
});
|
|
});
|
|
|
|
+ listDept().then((response) => {
|
|
|
|
+ this.arr = response.data
|
|
|
|
+ });
|
|
listInventory(this.queryParams).then(response => {
|
|
listInventory(this.queryParams).then(response => {
|
|
this.inventoryList = response.rows;
|
|
this.inventoryList = response.rows;
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ //获取公司名
|
|
|
|
+ companyName(val){
|
|
|
|
+ let num = parseInt(val)
|
|
|
|
+ let arr2 = this.arr.filter(item => item.deptId===num);
|
|
|
|
+ return arr2[0].deptName
|
|
|
|
+ },
|
|
// 取消按钮
|
|
// 取消按钮
|
|
cancel() {
|
|
cancel() {
|
|
this.open = false;
|
|
this.open = false;
|