|
@@ -211,11 +211,11 @@
|
|
|
style="width: 100%"
|
|
|
:default-sort="{ prop: 'applicationDate', order: 'descending' }"
|
|
|
>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column width="55" align="center" />
|
|
|
<el-table-column label="资产盘点记录编号" align="center" prop="id" />
|
|
|
<el-table-column label="单据编号" align="center" prop="orderNumber" />
|
|
|
<el-table-column label="任务名称" align="center" prop="name" />
|
|
|
- <el-table-column label="盘点部门" align="center" prop="inventoryDepartment" />
|
|
|
+ <el-table-column label="盘点部门" align="center" prop="deptName" />
|
|
|
<el-table-column label="盘点人" align="center" prop="inventoryBy" />
|
|
|
<el-table-column label="盘点日期" align="center" prop="inventoryDate" width="180">
|
|
|
<template slot-scope="scope">
|
|
@@ -225,6 +225,7 @@
|
|
|
<el-table-column label="盘点位置" align="center" prop="inventoryLocation" />
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
</el-table>
|
|
|
+
|
|
|
<!-- 【调整】资产信息 -->
|
|
|
<el-dialog
|
|
|
title="资产调整"
|
|
@@ -245,7 +246,8 @@
|
|
|
|
|
|
<script>
|
|
|
import { listOrder, auditOrder } from "@/api/order/order";
|
|
|
-import { listInventory } from "@/api/inventory/inventory";
|
|
|
+import { listInventoryDTO } from "@/api/inventory/inventory";
|
|
|
+import { getUserProfile } from "@/api/system/user";
|
|
|
|
|
|
export default {
|
|
|
dicts: ["asset_order_type", "asset_record_status"],
|
|
@@ -255,6 +257,8 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ //用户信息
|
|
|
+ user: {},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 资产单据表格数据
|
|
@@ -271,6 +275,7 @@ export default {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
recordStatus: 1,
|
|
|
+ inventoryBy: '',
|
|
|
},
|
|
|
};
|
|
|
},
|
|
@@ -281,9 +286,13 @@ export default {
|
|
|
/** 查询资产单据列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listInventory(this.queryParams).then(response => {
|
|
|
+ getUserProfile().then(response => {
|
|
|
+ this.user = response.data;
|
|
|
+ this.queryParams.inventoryBy = this.user.userName
|
|
|
+ listInventoryDTO(this.queryParams).then(response => {
|
|
|
this.inventoryList = response.rows;
|
|
|
});
|
|
|
+ });
|
|
|
listOrder(this.queryParams).then((response) => {
|
|
|
this.orderList = response.rows;
|
|
|
this.total = response.total;
|