index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <div class="hotel-index">
  3. <h3>待审批信息</h3>
  4. <el-table
  5. :data="orderList"
  6. height="260"
  7. border
  8. style="width: 100%"
  9. :default-sort="{ prop: 'applicationDate', order: 'descending' }"
  10. >
  11. <el-table-column type="expand">
  12. <template slot-scope="props">
  13. <el-form label-position="left" class="table-expand">
  14. <el-descriptions :column="4" border>
  15. <el-descriptions-item
  16. v-if="props.row.orderType !== 1"
  17. label="资产总原值"
  18. >
  19. <span>{{ props.row.assetTotalOriginalValue }}</span>
  20. </el-descriptions-item>
  21. <el-descriptions-item
  22. v-if="props.row.orderType !== 1"
  23. label="资产总净值"
  24. >
  25. <span>{{ props.row.assetTotalNetValue }}</span>
  26. </el-descriptions-item>
  27. <el-descriptions-item
  28. v-if="props.row.orderType === 1"
  29. label="【调整】资产编号"
  30. >
  31. <span>{{ props.row.adjustmentAssetNumber }}</span>
  32. </el-descriptions-item>
  33. <el-descriptions-item
  34. v-if="props.row.orderType === 1"
  35. label="【调整】资产原信息"
  36. >
  37. <el-button
  38. type="text"
  39. icon="el-icon-search"
  40. @click="
  41. onSelectOriginalAssetInfo(
  42. props.row.adjustmentOriginalAssetInfo
  43. )
  44. "
  45. >查看</el-button
  46. >
  47. </el-descriptions-item>
  48. <el-descriptions-item
  49. v-if="props.row.orderType !== 1"
  50. label="资产明细"
  51. >
  52. <el-button
  53. type="text"
  54. icon="el-icon-search"
  55. @click="
  56. onSelectopenDetail(
  57. props.row
  58. )
  59. "
  60. >查看</el-button
  61. >
  62. </el-descriptions-item>
  63. <el-descriptions-item
  64. v-if="props.row.orderType === 2"
  65. label="【调拨】调出部门"
  66. >
  67. <span>{{ props.row.allocationCallOutDepartmentName }}</span>
  68. </el-descriptions-item>
  69. <el-descriptions-item
  70. v-if="props.row.orderType === 2"
  71. label="【调拨】调出经办人"
  72. >
  73. <span>{{ props.row.allocationCallOutBy }}</span>
  74. </el-descriptions-item>
  75. <el-descriptions-item
  76. v-if="props.row.orderType === 2"
  77. label="【调拨】调出日期"
  78. >
  79. <span>{{
  80. parseTime(props.row.allocationCallOutDate, "{y}-{m}-{d}")
  81. }}</span>
  82. </el-descriptions-item>
  83. <el-descriptions-item
  84. v-if="props.row.orderType === 2"
  85. label="【调拨】调入部门"
  86. >
  87. <span>{{ props.row.allocationCallInDepartmentName }}</span>
  88. </el-descriptions-item>
  89. <el-descriptions-item
  90. v-if="props.row.orderType === 2"
  91. label="【调拨】调入经办人"
  92. >
  93. <span>{{ props.row.allocationCallInBy }}</span>
  94. </el-descriptions-item>
  95. <el-descriptions-item
  96. v-if="props.row.orderType === 2"
  97. label="【调拨】调入日期"
  98. >
  99. <span>{{
  100. parseTime(props.row.allocationCallInDate, "{y}-{m}-{d}")
  101. }}</span>
  102. </el-descriptions-item>
  103. <el-descriptions-item
  104. v-if="props.row.orderType === 2"
  105. label="【调拨】新管理人"
  106. >
  107. <span>{{ props.row.allocationNewResponsiblePerson }}</span>
  108. </el-descriptions-item>
  109. <el-descriptions-item
  110. v-if="props.row.orderType === 2"
  111. label="【调拨】新功能位置编号"
  112. >
  113. <span>{{ props.row.allocationNewLocationNumber }}</span>
  114. </el-descriptions-item>
  115. <el-descriptions-item
  116. v-if="props.row.orderType === 3"
  117. label="【借出】借出部门"
  118. >
  119. <span>{{ props.row.lendDepartmentName }}</span>
  120. </el-descriptions-item>
  121. <el-descriptions-item
  122. v-if="props.row.orderType === 3"
  123. label="【借出】经手人"
  124. >
  125. <span>{{ props.row.lendBySponsor }}</span>
  126. </el-descriptions-item>
  127. <el-descriptions-item
  128. v-if="props.row.orderType === 3"
  129. label="【借出】往来单位"
  130. >
  131. <span>{{ props.row.lendPassingUnitName }}</span>
  132. </el-descriptions-item>
  133. <el-descriptions-item label="原因说明">{{
  134. props.row.reason
  135. }}</el-descriptions-item>
  136. <el-descriptions-item label="所属公司">{{
  137. props.row.corporationName
  138. }}</el-descriptions-item>
  139. </el-descriptions>
  140. </el-form>
  141. </template>
  142. </el-table-column>
  143. <el-table-column label="单据编号" align="center" prop="orderNumber" />
  144. <el-table-column label="单据类型" align="center" prop="orderType">
  145. <template slot-scope="scope">
  146. <dict-tag
  147. :options="dict.type.asset_order_type"
  148. :value="scope.row.orderType"
  149. />
  150. </template>
  151. </el-table-column>
  152. <el-table-column
  153. label="申请日期"
  154. align="center"
  155. prop="applicationDate"
  156. width="180"
  157. >
  158. <template slot-scope="scope">
  159. <span>{{ parseTime(scope.row.applicationDate, "{y}-{m}-{d}") }}</span>
  160. </template>
  161. </el-table-column>
  162. <el-table-column
  163. label="申请部门"
  164. align="center"
  165. prop="applicationDepartmentName"
  166. />
  167. <el-table-column label="制单人" align="center" prop="preparedBy" />
  168. <el-table-column
  169. label="制单部门"
  170. align="center"
  171. prop="preparedDepartmentName"
  172. />
  173. <el-table-column label="记录状态" align="center" prop="recordStatus">
  174. <template slot-scope="scope">
  175. <dict-tag
  176. :options="dict.type.asset_record_status"
  177. :value="scope.row.recordStatus"
  178. />
  179. </template>
  180. </el-table-column>
  181. <el-table-column
  182. label="操作"
  183. align="center"
  184. class-name="small-padding fixed-width"
  185. >
  186. <template slot-scope="scope">
  187. <el-button
  188. size="mini"
  189. type="text"
  190. icon="el-icon-edit"
  191. @click="handleAudit(scope.row, 2)"
  192. v-hasPermi="['order:order:audit']"
  193. >审批</el-button
  194. >
  195. <el-button
  196. size="mini"
  197. type="text"
  198. icon="el-icon-delete"
  199. @click="handleAudit(scope.row, 0)"
  200. v-hasPermi="['order:order:audit']"
  201. >撤销</el-button
  202. >
  203. </template>
  204. </el-table-column>
  205. </el-table>
  206. <h3>待盘点信息</h3>
  207. <el-table
  208. :data="inventoryList"
  209. height="260"
  210. border
  211. style="width: 100%"
  212. :default-sort="{ prop: 'applicationDate', order: 'descending' }"
  213. >
  214. <el-table-column width="55" align="center" />
  215. <el-table-column label="资产盘点记录编号" align="center" prop="id" />
  216. <el-table-column label="单据编号" align="center" prop="orderNumber" />
  217. <el-table-column label="任务名称" align="center" prop="name" />
  218. <el-table-column label="盘点部门" align="center" prop="deptName" />
  219. <el-table-column label="盘点人" align="center" prop="inventoryBy" />
  220. <el-table-column label="盘点日期" align="center" prop="inventoryDate" width="180">
  221. <template slot-scope="scope">
  222. <span>{{ parseTime(scope.row.inventoryDate, '{y}-{m}-{d}') }}</span>
  223. </template>
  224. </el-table-column>
  225. <el-table-column label="盘点位置" align="center" prop="inventoryLocation" />
  226. <el-table-column label="备注" align="center" prop="remark" />
  227. </el-table>
  228. <!-- 【调整】资产信息 -->
  229. <el-dialog
  230. title="资产调整"
  231. :visible.sync="openAdjustment"
  232. width="900px"
  233. append-to-body
  234. >
  235. <AssetInfo
  236. :title="'资产原信息'"
  237. :assetInfo="adjustmentOriginalAssetInfo"
  238. />
  239. </el-dialog>
  240. <el-dialog title="单据详细信息" :visible.sync="openDetail" width="1300px" append-to-body>
  241. <OrderDetail v-if="openDetail" :orderInfo="orderInfo"/>
  242. </el-dialog>
  243. </div>
  244. </template>
  245. <script>
  246. import { listOrder, auditOrder } from "@/api/order/order";
  247. import { listInventoryDTO } from "@/api/inventory/inventory";
  248. import { getUserProfile } from "@/api/system/user";
  249. export default {
  250. dicts: ["asset_order_type", "asset_record_status"],
  251. components: {
  252. AssetInfo: () => import("@/components/asset/assetCard.vue"),
  253. OrderDetail: () => import('@/views/order/detail/index.vue'),
  254. },
  255. data() {
  256. return {
  257. //用户信息
  258. user: {},
  259. // 表单参数
  260. form: {},
  261. // 资产单据表格数据
  262. orderList: [],
  263. inventoryList: [],
  264. // 资产原信息
  265. openAdjustment: false,
  266. adjustmentOriginalAssetInfo: null,
  267. // 单据详细
  268. openDetail: false,
  269. orderInfo: null,
  270. // 查询参数
  271. queryParams: {
  272. pageNum: 1,
  273. pageSize: 10,
  274. recordStatus: 1,
  275. inventoryBy: '',
  276. },
  277. };
  278. },
  279. created() {
  280. this.getList();
  281. },
  282. methods: {
  283. /** 查询资产单据列表 */
  284. getList() {
  285. this.loading = true;
  286. getUserProfile().then(response => {
  287. this.user = response.data;
  288. this.queryParams.inventoryBy = this.user.userName
  289. listInventoryDTO(this.queryParams).then(response => {
  290. this.inventoryList = response.rows;
  291. });
  292. });
  293. listOrder(this.queryParams).then((response) => {
  294. this.orderList = response.rows;
  295. this.total = response.total;
  296. this.loading = false;
  297. });
  298. },
  299. onSelectOriginalAssetInfo(info) {
  300. const json = JSON.parse(info);
  301. this.adjustmentOriginalAssetInfo = json;
  302. this.openAdjustment = true;
  303. console.log("资产原信息:", json);
  304. },
  305. // 表单重置
  306. reset() {
  307. this.form = {
  308. id: null,
  309. orderNumber: null,
  310. orderType: null,
  311. assetTotalOriginalValue: null,
  312. assetTotalNetValue: null,
  313. applicationDate: null,
  314. applicationDepartment: null,
  315. adjustmentAssetNumber: null,
  316. adjustmentOriginalAssetInfo: null,
  317. allocationCallOutDepartment: null,
  318. allocationCallOutBy: null,
  319. allocationCallOutDate: null,
  320. allocationCallInDepartment: null,
  321. allocationCallInBy: null,
  322. allocationCallInDate: null,
  323. allocationNewResponsiblePerson: null,
  324. allocationNewLocationNumber: null,
  325. lendDepartment: null,
  326. lendBySponsor: null,
  327. lendPassingUnit: null,
  328. reason: null,
  329. preparedBy: null,
  330. preparedDepartment: null,
  331. corporation: null,
  332. recordStatus: null,
  333. };
  334. },
  335. onSelectopenDetail(order) {
  336. this.orderInfo = order
  337. console.log('单据信息:', order)
  338. this.openDetail = true
  339. },
  340. handleAudit(row, recordStatus) {
  341. this.reset();
  342. this.form.id = row.id;
  343. this.form.orderNumber = row.orderNumber;
  344. this.form.orderType = row.orderType;
  345. this.form.recordStatus = recordStatus;
  346. auditOrder(this.form).then((response) => {
  347. this.$modal.msgSuccess("操作成功");
  348. this.getList();
  349. });
  350. },
  351. },
  352. };
  353. </script>
  354. <style lang="less" scoped>
  355. .hotel-index {
  356. padding: 0 15px;
  357. }
  358. </style>