index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. <template>
  2. <div class="purchaseOrder pagePadding">
  3. <div v-if="powers.some((i) => i == '001')">
  4. <ex-table
  5. v-loading="loading"
  6. :table="table"
  7. :data="tableData"
  8. :columns="columns"
  9. :page="pageInfo"
  10. :size="size"
  11. @page-curr-change="handlePageChange"
  12. @page-size-change="handleSizeChange"
  13. @screen-reset="
  14. pageInfo.curr = 1;
  15. parmValue.page = 1;
  16. searchList();
  17. "
  18. @screen-submit="
  19. pageInfo.curr = 1;
  20. parmValue.page = 1;
  21. searchList();
  22. "
  23. >
  24. <template #table-header="{}">
  25. <div style="width: 100%">
  26. <el-row style="padding: 0 0 0 80px">
  27. <el-col :span="4" style="width: 130px">
  28. <el-select
  29. :size="searchSize"
  30. v-model="parmValue.order_type"
  31. filterable
  32. clearable
  33. placeholder="商品类型"
  34. style="width: 100%"
  35. @change="
  36. pageInfo.curr = 1;
  37. parmValue.page = 1;
  38. searchList();
  39. "
  40. >
  41. <el-option
  42. v-for="item in cg_order_type_options"
  43. :key="'order_type' + item.id"
  44. :label="item.label"
  45. :value="item.id"
  46. />
  47. </el-select>
  48. </el-col>
  49. <el-col :span="4" style="width: 170px; padding: 0 0 0 10px">
  50. <el-select
  51. :size="searchSize"
  52. v-model="parmValue.status"
  53. filterable
  54. clearable
  55. placeholder="入库单状态"
  56. style="width: 100%"
  57. @change="
  58. pageInfo.curr = 1;
  59. parmValue.page = 1;
  60. searchList();
  61. "
  62. >
  63. <el-option
  64. v-for="item in statusOptions"
  65. :key="'status' + item.value"
  66. :label="item.label"
  67. :value="item.value"
  68. />
  69. </el-select>
  70. </el-col>
  71. <el-col :span="6" style="width: 303px; padding: 0 0 0 10px">
  72. <period-date-picker
  73. :type="1"
  74. :width="'135px'"
  75. :size="searchSize"
  76. :start="timeOBJ.start"
  77. :end="timeOBJ.end"
  78. @timeReturned="handleTime"
  79. />
  80. </el-col>
  81. <el-col :span="3" style="width: 66px; float: right">
  82. <el-button
  83. :size="searchSize"
  84. type="primary"
  85. style="float: right; margin-left: 5px"
  86. @click="searchList"
  87. >
  88. 刷新
  89. </el-button>
  90. </el-col>
  91. </el-row>
  92. <el-row style="padding: 10px 0 0 0">
  93. <el-row>
  94. <el-col :span="6" style="width: 520px; padding: 0 0 0 0px">
  95. <el-input
  96. clearable
  97. placeholder="关键字"
  98. v-model="input"
  99. :size="searchSize"
  100. class="input-with-select"
  101. @blur="
  102. pageInfo.curr = 1;
  103. parmValue.page = 1;
  104. searchList();
  105. "
  106. >
  107. <el-option label="采购单编号" value="1"></el-option>
  108. <el-option label="入库单编号" value="2"></el-option>
  109. <!-- <el-option label="备库编号" value="3"></el-option> -->
  110. <el-option label="商品属性编号" value="4"></el-option>
  111. <el-option label="产品名称" value="5"></el-option>
  112. <el-option label="申请人" value="6"></el-option>
  113. <!-- <el-option label="采购供应商编号" value="7"></el-option> -->
  114. <el-option label="申请人部门" value="8"></el-option>
  115. </el-select>
  116. <el-button
  117. slot="append"
  118. @click="
  119. pageInfo.curr = 1;
  120. parmValue.page = 1;
  121. searchList();
  122. "
  123. icon="el-icon-search"
  124. ></el-button>
  125. </el-input>
  126. </el-col>
  127. <!--
  128. <el-col :span="4" >
  129. <el-select style="width:100%;margin-left:10px" placeholder="供应商端" clearable size="mini" v-model="parmValue.has_account"
  130. @change="
  131. pageInfo.curr = 1;
  132. parmValue.page = 1;
  133. searchList();
  134. "
  135. >
  136. <el-option value="0" label="未开通" />
  137. <el-option value="1" label="已开通"/>
  138. </el-select>
  139. </el-col> -->
  140. </el-row>
  141. <el-col :span="4" style="width: 66px; float: right">
  142. <el-button
  143. type="warning"
  144. class="fr"
  145. :size="searchSize"
  146. @click="restSearch"
  147. >
  148. 重置
  149. </el-button>
  150. </el-col>
  151. <el-col
  152. :span="4"
  153. style="width: 130px; margin-top: 10px; margin-right: 10px"
  154. >
  155. <el-select
  156. :size="searchSize"
  157. v-model="parmValue.order_source"
  158. filterable
  159. clearable
  160. placeholder="订单来源"
  161. style="width: 100%"
  162. @change="
  163. pageInfo.curr = 1;
  164. parmValue.page = 1;
  165. searchList();
  166. "
  167. >
  168. <el-option
  169. v-for="item in cg_order_source_options"
  170. :key="'order_type' + item.id"
  171. :label="item.label"
  172. :value="item.id"
  173. />
  174. </el-select>
  175. </el-col>
  176. <el-col :span="4">
  177. <search-supplier
  178. :size="'mini'"
  179. style="width: 220px; margin-top: 10px"
  180. :value="supplierNo"
  181. :disabled="false"
  182. :placeholder="'供应商名称'"
  183. :names="''"
  184. :isDetail="false"
  185. :noDisabled="true"
  186. @searchChange="supplierChange"
  187. />
  188. </el-col>
  189. </el-row>
  190. <!-- <el-col :span="4" style="width: 120px">
  191. <el-dropdown @command="handleClick($event)" :size="searchSize">
  192. <el-button :size="searchSize" style="width: 120px">
  193. {{ sselect }}
  194. <i
  195. class="el-icon-arrow-down el-icon--right"
  196. :size="searchSize"
  197. ></i>
  198. </el-button>
  199. <el-dropdown-menu slot="dropdown">
  200. <el-dropdown-item
  201. v-for="item in options"
  202. :key="item"
  203. :command="item"
  204. >{{ item }}</el-dropdown-item
  205. >
  206. </el-dropdown-menu>
  207. </el-dropdown>
  208. </el-col> -->
  209. </div>
  210. </template>
  211. <template #good_name="{ scope }">
  212. <span>{{ scope.row.good_name }}</span>
  213. <span v-for="(si, sii) in scope.row.speclist" :key="si + sii"
  214. >{{ sii === 0 ? "_" : "-" }}{{ si.spec_name }}[{{ si.spec_value }}]</span
  215. >
  216. </template>
  217. <template #order_type="{ scope }">
  218. <el-tag
  219. :size="tablebtnSize"
  220. v-text="
  221. (
  222. cg_order_type_options.find((item) => item.id == scope.row.order_type) ||
  223. {}
  224. ).label || '--'
  225. "
  226. ></el-tag>
  227. </template>
  228. <template #has_account="{ scope }">
  229. <el-tag
  230. :size="tablebtnSize"
  231. :type="has_account_list.find(({code}) => code === String(scope.row.has_account))?.type"
  232. >{{ has_account_list.find(({code}) => code === String(scope.row.has_account))?.name }}</el-tag>
  233. </template>
  234. <template #order_source="{ scope }">
  235. <el-tag
  236. :size="tablebtnSize"
  237. v-text="
  238. (
  239. cg_order_source_options.find(
  240. (item) => item.id == scope.row.order_source
  241. ) || {}
  242. ).label || '--'
  243. "
  244. ></el-tag>
  245. </template>
  246. <template #is_stock="{ scope }">
  247. <el-tag
  248. :size="tablebtnSize"
  249. v-text="
  250. (is_stock.find((item) => item.id == scope.row.is_stock) || {}).label || '--'
  251. "
  252. ></el-tag>
  253. </template>
  254. <template #status="{ scope }">
  255. <el-tag
  256. :size="tablebtnSize"
  257. :type="scope.row.status == '0' ? 'warning' : ''"
  258. v-text="
  259. (statusOptions.find((item) => item.value == scope.row.status) || {})
  260. .label || '--'
  261. "
  262. ></el-tag>
  263. </template>
  264. <template #operation="{ scope }">
  265. <el-tooltip
  266. v-if="powers.some((i) => i == '007')"
  267. effect="dark"
  268. content="详情"
  269. placement="top"
  270. >
  271. <i
  272. class="el-icon-view tb-icon"
  273. @click="getRouter('wsmInOrderDetail', scope.row.wsm_in_code)"
  274. ></i>
  275. </el-tooltip>
  276. </template>
  277. </ex-table>
  278. </div>
  279. <div v-else>
  280. <no-auth></no-auth>
  281. </div>
  282. </div>
  283. </template>
  284. <script>
  285. import mixinPage from "@/mixins/elPaginationHandle";
  286. import resToken from "@/mixins/resToken";
  287. import companyHelper from "@/mixins/companyHelper";
  288. import asyncRequest from "@/apis/service/purchaseIn/wsmInOrder";
  289. import { cg_order_type_options, cg_order_source_options, has_account_list } from "@/assets/js/statusList";
  290. import columns from "./columns"; //表格列参数
  291. import { mapGetters } from "vuex";
  292. export default {
  293. name: "purchaseOrder",
  294. mixins: [mixinPage, resToken, companyHelper],
  295. components: {},
  296. computed: {
  297. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  298. powers() {
  299. const tran =
  300. this.$store.getters.btnList.find((i) => i.menu_route == "wsmInOrder") || {};
  301. const { action } = tran ?? {};
  302. return action ?? [];
  303. },
  304. },
  305. data() {
  306. return {
  307. supplierNo: "",
  308. sitem: null,
  309. select: "1",
  310. input: "",
  311. timeOBJ: {
  312. start: "", //起始时间
  313. end: "", // 结束时间
  314. },
  315. supplierNo: [],
  316. options: ["创建时间", "最晚入库时间"],
  317. sselect: "创建时间",
  318. cg_order_type_options,
  319. cg_order_source_options,
  320. has_account_list,
  321. // 状态
  322. statusOptions: [
  323. {
  324. value: "1",
  325. label: "待库管验货",
  326. },
  327. {
  328. value: "2",
  329. label: "入库完成",
  330. },
  331. ],
  332. loading: false,
  333. showModel: false,
  334. isDetail: false,
  335. modelId: 0,
  336. wsm_code: [],
  337. wsm_supplierNo: [],
  338. parmValue: {
  339. has_account: "",
  340. order_source: "",
  341. order_type: "",
  342. // bk_code: "", // 备库编码
  343. wsm_in_code: "", // 入库单号
  344. cgdNo: "", // 采购单编码
  345. apply_name: "", // 申请人
  346. good_name: "", // 产品名称
  347. good_type_code: "", // 产品属性编号
  348. status: "", //状态
  349. wsm_code: "", //入货仓库编码
  350. start: "", //新建起始时间
  351. end: "", // 新建结束时间
  352. last_start: "", //最后入库时间开始
  353. last_end: "", //最后入库时间结束
  354. page: 1, // 页码
  355. size: 15, // 每页显示条数
  356. supplierNo: "",
  357. company_name: "", //部门
  358. wsm_supplierNo: "",
  359. },
  360. tableData: [],
  361. passwordModel: false,
  362. passwordModelId: 0,
  363. isPasswordDetail: false,
  364. // 表格 - 数据
  365. tableData: [],
  366. // 表格 - 参数
  367. table: {
  368. stripe: true,
  369. border: true,
  370. _defaultHeader_: ["setcol"],
  371. },
  372. // 表格 - 分页
  373. pageInfo: {
  374. size: 15,
  375. curr: 1,
  376. total: 0,
  377. },
  378. // 表格 - 列参数
  379. columns: columns,
  380. };
  381. },
  382. mounted() {
  383. const { back } = this.$route.query;
  384. if (back) {
  385. this.parmValue = JSON.parse(back);
  386. console.log(this.parmValue);
  387. const { page, size, start, end, last_start, last_end } = this.parmValue;
  388. this.timeOBJ.start = start || last_start;
  389. this.timeOBJ.end = end || last_end;
  390. this.pageInfo = {
  391. size: size,
  392. curr: page,
  393. total: 0,
  394. };
  395. //多选条件
  396. this.select = this.parmValue.select;
  397. this.sselect = this.parmValue.sselect;
  398. this.input = this.parmValue.input;
  399. } else {
  400. this.select = "1";
  401. this.sselect = "创建时间";
  402. }
  403. this.searchList();
  404. },
  405. methods: {
  406. async supplierChange(e) {
  407. const { code, label } = e;
  408. this.supplierNo = code ? [code] : [];
  409. this.searchList();
  410. },
  411. getRouter(toRouter, queryId) {
  412. if (toRouter && queryId) {
  413. let model = {
  414. id: queryId,
  415. };
  416. //有多选框的条件
  417. this.parmValue.select = this.select;
  418. this.parmValue.sselect = this.sselect;
  419. this.parmValue.input = this.input;
  420. //
  421. let routerModel = {
  422. options: JSON.parse(JSON.stringify(this.parmValue)),
  423. router: this.$route.path,
  424. };
  425. model.preModel = JSON.stringify(routerModel);
  426. this.routeGoto(toRouter, model);
  427. } else {
  428. this.$message.warning("暂未找到相关流程!");
  429. }
  430. },
  431. restSearch() {
  432. this.sselect = "创建时间";
  433. this.select = "1";
  434. this.input = "";
  435. this.wsm_code = [];
  436. this.wsm_supplierNo = [];
  437. this.timeOBJ = {
  438. start: "", //起始时间
  439. end: "", // 结束时间
  440. };
  441. this.parmValue = {
  442. has_account: "",
  443. order_type: "",
  444. // bk_code: "", // 备库编码
  445. wsm_in_code: "", // 入库单号
  446. cgdNo: "", // 采购单编码
  447. apply_name: "", // 申请人
  448. good_name: "", // 产品名称
  449. good_type_code: "", // 产品属性编号
  450. status: "", //状态
  451. wsm_code: "", //入货仓库编码
  452. start: "", //新建起始时间
  453. end: "", // 新建结束时间
  454. last_start: "", //最后入库时间开始
  455. last_end: "", //最后入库时间结束
  456. company_name: "", //部门
  457. page: 1, // 页码
  458. size: 15, // 每页显示条数
  459. };
  460. // 表格 - 分页
  461. this.pageInfo = {
  462. size: 15,
  463. curr: 1,
  464. total: 0,
  465. };
  466. this.searchList();
  467. },
  468. async handleClick(e) {
  469. this.sselect = e;
  470. this.parmValue.start = e === "创建时间" ? this.timeOBJ.start : "";
  471. this.parmValue.end = e === "创建时间" ? this.timeOBJ.end : "";
  472. this.parmValue.last_start = e !== "创建时间" ? this.timeOBJ.start : "";
  473. this.parmValue.last_end = e !== "创建时间" ? this.timeOBJ.end : "";
  474. if (
  475. !(
  476. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  477. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  478. )
  479. ) {
  480. this.parmValue.page = 1;
  481. this.pageInfo.curr = 1;
  482. await this.searchList();
  483. }
  484. },
  485. // async supplierChange(e) {
  486. // if (e && e.id) {
  487. // this.parmValue.wsm_supplierNo = e.code;
  488. // this.wsm_supplierNo = [e.code];
  489. // } else {
  490. // this.parmValue.wsm_supplierNo = "";
  491. // this.wsm_supplierNo = [];
  492. // }
  493. // this.parmValue.wsm_code = "";
  494. // this.wsm_code = [];
  495. // this.parmValue.page = 1;
  496. // this.pageInfo.curr = 1;
  497. // await this.searchList();
  498. // },
  499. async stockChange(e) {
  500. if (e && e.id) {
  501. this.parmValue.wsm_code = e.code;
  502. this.wsm_code = [e.code];
  503. } else {
  504. this.parmValue.wsm_code = "";
  505. this.wsm_code = [];
  506. }
  507. console.log(e);
  508. this.parmValue.page = 1;
  509. this.pageInfo.curr = 1;
  510. await this.searchList();
  511. },
  512. async searchList() {
  513. if (
  514. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  515. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  516. ) {
  517. this.$message.warning("时间区间不完整!");
  518. return;
  519. }
  520. this.loading = true;
  521. this.parmValue.cgdNo = this.select === "1" ? this.input : ""; // 采购单编码
  522. this.parmValue.wsm_in_code = this.select === "2" ? this.input : ""; // 入库单号
  523. // this.parmValue.bk_code = this.select === "3" ? this.input : ""; // 备库编码
  524. this.parmValue.good_type_code = this.select === "4" ? this.input : ""; // 产品属性编号
  525. this.parmValue.good_name = this.select === "5" ? this.input : ""; // 产品名称
  526. this.parmValue.apply_name = this.select === "6" ? this.input : ""; // 申请人
  527. this.parmValue.supplierNo = this.select === "7" ? this.input : ""; // 采购供应商编号
  528. this.parmValue.company_name = this.select === "8" ? this.input : ""; // 部门
  529. // this.wsm_supplierNo = [];
  530. let model = JSON.parse(JSON.stringify(this.parmValue));
  531. let _model = {
  532. cgdNo: model.cgdNo,
  533. wsm_in_code: model.wsm_in_code,
  534. start: model.start,
  535. end: model.end,
  536. order_type: model.order_type,
  537. good_type_code: model.good_type_code,
  538. apply_name: model.apply_name,
  539. wsm_code: model.wsm_code,
  540. good_name: model.good_name,
  541. supplie: "",
  542. supplierNo: Array.isArray(this.supplierNo) ? this.supplierNo[0] : this.supplierNo,
  543. status: model.status,
  544. page: model.page,
  545. size: model.size,
  546. company_name: model.company_name,
  547. order_source: model.order_source,
  548. has_account: model.has_account,
  549. needRela: true,
  550. };
  551. const res = await asyncRequest.list(_model);
  552. if (res && res.code === 0 && res.data) {
  553. this.tableData = res.data.list;
  554. this.pageInfo.total = Number(res.data.count);
  555. } else if (res && res.code >= 100 && res.code <= 104) {
  556. await this.logout();
  557. } else {
  558. this.tableData = [];
  559. this.pageInfo.total = 0;
  560. }
  561. this.loading = false;
  562. },
  563. // 时间
  564. async handleTime(e) {
  565. if (e.startTime !== "") {
  566. this.timeOBJ.start = e.startTime;
  567. } else {
  568. this.timeOBJ.start = "";
  569. }
  570. if (e.endTime !== "") {
  571. this.timeOBJ.end = e.endTime;
  572. } else {
  573. this.timeOBJ.end = "";
  574. }
  575. await this.handleClick(this.sselect);
  576. },
  577. },
  578. };
  579. </script>
  580. <style lang="scss" scoped>
  581. .purchaseOrder {
  582. // text-align: right;
  583. }
  584. </style>