index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  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. @selection-change="(list) => (tableSelection = list)"
  14. @screen-reset="
  15. pageInfo.curr = 1;
  16. parmValue.page = 1;
  17. searchList();
  18. "
  19. @screen-submit="
  20. pageInfo.curr = 1;
  21. parmValue.page = 1;
  22. searchList();
  23. "
  24. @selection="selection_change"
  25. >
  26. <template #table-header="{}">
  27. <div style="width: 100%">
  28. <el-row style="padding: 0 0 0 80px">
  29. <el-col :span="4" style="width: 150px">
  30. <el-select
  31. :size="searchSize"
  32. v-model="parmValue.status"
  33. filterable
  34. clearable
  35. placeholder="采购单状态"
  36. style="width: 100%"
  37. @change="
  38. pageInfo.curr = 1;
  39. parmValue.page = 1;
  40. searchList();
  41. "
  42. >
  43. <el-option
  44. v-for="item in statusOptions"
  45. :key="'status' + item.value"
  46. :label="item.label"
  47. :value="item.value"
  48. />
  49. </el-select>
  50. </el-col>
  51. <el-col :span="4" style="width: 130px; padding: 0 0 0 10px">
  52. <el-dropdown @command="handleClick($event)" :size="searchSize">
  53. <el-button :size="searchSize" style="width: 120px">
  54. {{ sselect }}
  55. <i class="el-icon-arrow-down el-icon--right" :size="searchSize"></i>
  56. </el-button>
  57. <el-dropdown-menu slot="dropdown">
  58. <el-dropdown-item
  59. v-for="item in options"
  60. :key="item"
  61. :command="item"
  62. >{{ item }}</el-dropdown-item
  63. >
  64. </el-dropdown-menu>
  65. </el-dropdown>
  66. </el-col>
  67. <el-col :span="4" style="width: 303px; padding: 0 0 0 10px">
  68. <period-date-picker
  69. :type="1"
  70. :width="'135px'"
  71. :size="searchSize"
  72. :start="timeOBJ.start"
  73. :end="timeOBJ.end"
  74. @timeReturned="handleTime"
  75. />
  76. </el-col>
  77. <el-col :span="3" style="width: 66px; float: right">
  78. <el-button
  79. :size="searchSize"
  80. type="primary"
  81. style="float: right; margin-left: 5px"
  82. @click="searchList"
  83. >
  84. 刷新
  85. </el-button>
  86. </el-col>
  87. <el-col
  88. :span="4"
  89. style="width: 150px; float: right"
  90. v-if="powers.some((i) => i == '089') && !isSupertube"
  91. >
  92. <el-button
  93. type="primary"
  94. @click="statusConfirm"
  95. :size="searchSize"
  96. class="fr"
  97. >
  98. 批量已与供应商确认
  99. </el-button>
  100. </el-col>
  101. </el-row>
  102. <el-row style="padding: 10px 0 0 0">
  103. <el-col :span="4" style="width: 130px; margin-right: 10px">
  104. <el-select
  105. :size="searchSize"
  106. v-model="parmValue.order_type"
  107. filterable
  108. clearable
  109. placeholder="商品类型"
  110. style="width: 100%"
  111. @change="
  112. pageInfo.curr = 1;
  113. parmValue.page = 1;
  114. searchList();
  115. "
  116. >
  117. <el-option
  118. v-for="item in cg_order_type_options"
  119. :key="'order_type' + item.id"
  120. :label="item.label"
  121. :value="item.id"
  122. />
  123. </el-select>
  124. </el-col>
  125. <el-col :span="4" style="width: 130px; margin-right: 10px">
  126. <el-select
  127. :size="searchSize"
  128. v-model="parmValue.order_source"
  129. filterable
  130. clearable
  131. placeholder="订单来源"
  132. style="width: 100%"
  133. @change="
  134. pageInfo.curr = 1;
  135. parmValue.page = 1;
  136. searchList();
  137. "
  138. >
  139. <el-option
  140. v-for="item in cg_order_source_options"
  141. :key="'order_type' + item.id"
  142. :label="item.label"
  143. :value="item.id"
  144. />
  145. </el-select>
  146. </el-col>
  147. <el-col :span="4">
  148. <search-supplier
  149. :size="'mini'"
  150. style="width: 220px"
  151. :value="supplierNo"
  152. :disabled="false"
  153. :placeholder="'供应商名称'"
  154. :names="''"
  155. :isDetail="false"
  156. :noDisabled="true"
  157. @searchChange="supplierChange"
  158. />
  159. </el-col>
  160. <el-col :span="4" style="width: 66px; float: right">
  161. <el-button
  162. type="warning"
  163. class="fr"
  164. :size="searchSize"
  165. @click="restSearch"
  166. >
  167. 重置
  168. </el-button>
  169. </el-col>
  170. <!-- 暂时注释,下版需要导出 -->
  171. <el-col
  172. :span="4"
  173. style="width: 66px; float: right"
  174. v-if="powers.some((i) => i == '087')"
  175. >
  176. <el-button
  177. type="primary"
  178. style="margin-left: 30px"
  179. @click="download"
  180. :size="searchSize"
  181. class="fr"
  182. >
  183. 导出
  184. </el-button>
  185. </el-col>
  186. <el-col :span="4" style="width: 66px; float: right">
  187. <el-button
  188. type="primary"
  189. @click="handleBatchIn"
  190. :size="searchSize"
  191. class="fr"
  192. >
  193. 批量入库
  194. </el-button>
  195. </el-col>
  196. </el-row>
  197. <el-row>
  198. <el-col :span="6" style="width: 500px; margin-top: 10px">
  199. <el-input
  200. clearable
  201. placeholder="关键字"
  202. v-model="input"
  203. maxlength="40"
  204. :size="searchSize"
  205. class="input-with-select"
  206. @blur="
  207. pageInfo.curr = 1;
  208. parmValue.page = 1;
  209. searchList();
  210. "
  211. >
  212. <el-select
  213. v-model="select"
  214. style="width: 125px"
  215. slot="prepend"
  216. placeholder="关键字类型"
  217. @change="
  218. pageInfo.curr = 1;
  219. parmValue.page = 1;
  220. searchList();
  221. "
  222. >
  223. <el-option label="采购单编号" value="1"></el-option>
  224. <!-- <el-option label="入库单编号" value="2"></el-option> -->
  225. <!-- 列表未渲染备库编号,注释 -->
  226. <!-- <el-option label="备库编号" value="3"></el-option> -->
  227. <el-option label="商品成本编号" value="4"></el-option>
  228. <el-option label="商品名称" value="5"></el-option>
  229. <el-option label="商品创建人" value="6"></el-option>
  230. <!-- <el-option label="采购供应商编号" value="7"></el-option> -->
  231. <!-- <el-option label="采购供应商名称" value="10"></el-option> -->
  232. <el-option label="订单编号" value="8"></el-option>
  233. <el-option label="商品创建人部门" value="9"></el-option>
  234. </el-select>
  235. </el-input>
  236. </el-col>
  237. <el-col :span="4" >
  238. <el-select style="width:100%;margin-left:10px;margin-top:10px" placeholder="供应商端开启状态" clearable size="mini" v-model="parmValue.has_account"
  239. @change="
  240. pageInfo.curr = 1;
  241. parmValue.page = 1;
  242. searchList();
  243. "
  244. >
  245. <el-option value="0" label="未开通" />
  246. <el-option value="1" label="已开通"/>
  247. </el-select>
  248. </el-col>
  249. </el-row>
  250. </div>
  251. </template>
  252. <template #has_account="{ scope }">
  253. <el-tag
  254. :size="tablebtnSize"
  255. :type="scope.row.has_account == '0' ? 'warning' : ''"
  256. >{{ String(scope.row.has_account) === '1' ? '已开通' : '未开通' }}</el-tag>
  257. </template>
  258. <template #good_name="{ scope }">
  259. <span>{{ scope.row.good_name }}</span>
  260. <span v-for="(si, i) in scope.row.speclist" :key="si.spec_id + i">
  261. {{ i === 0 ? "__" : "--" }}{{ si.spec_name }}[{{ si.spec_value }}]
  262. </span>
  263. </template>
  264. <template #status="{ scope }">
  265. <el-tag
  266. :size="tablebtnSize"
  267. v-text="
  268. (statusOptions.find((item) => item.value == scope.row.status) || {})
  269. .label || '--'
  270. "
  271. ></el-tag>
  272. </template>
  273. <template #has_account="{ scope }">
  274. <el-tag
  275. :size="tablebtnSize"
  276. :type="
  277. (
  278. has_account_list.find(
  279. (item) => item.code == scope.row.has_account + ''
  280. ) || {}
  281. ).type || '--'
  282. "
  283. v-text="
  284. (
  285. has_account_list.find(
  286. (item) => item.code == scope.row.has_account + ''
  287. ) || {}
  288. ).name || '--'
  289. "
  290. ></el-tag>
  291. </template>
  292. <template #order_id="{ scope }">
  293. <el-tag
  294. :size="tablebtnSize"
  295. v-text="
  296. (
  297. cg_order_type_options.find((item) => item.id == scope.row.order_type) ||
  298. {}
  299. ).label || '--'
  300. "
  301. ></el-tag>
  302. </template>
  303. <template #order_source="{ scope }">
  304. <el-tag
  305. :size="tablebtnSize"
  306. v-text="
  307. (
  308. cg_order_source_options.find(
  309. (item) => item.id == scope.row.order_source
  310. ) || {}
  311. ).label || '--'
  312. "
  313. ></el-tag>
  314. </template>
  315. <template #operation="{ scope }">
  316. <el-tooltip
  317. v-if="powers.some((i) => i == '007')"
  318. effect="dark"
  319. content="详情"
  320. placement="top"
  321. >
  322. <i
  323. class="el-icon-view tb-icon"
  324. @click="getRouter('purchaseOrderDetail', scope.row.cgdNo)"
  325. ></i>
  326. </el-tooltip>
  327. </template>
  328. </ex-table>
  329. </div>
  330. <div v-else>
  331. <no-auth></no-auth>
  332. </div>
  333. </div>
  334. </template>
  335. <script>
  336. import mixinPage from "@/mixins/elPaginationHandle";
  337. import resToken from "@/mixins/resToken";
  338. import urlConfig from "@/apis/url-config";
  339. import asyncRequest from "@/apis/service/purchaseIn/purchaseOrder";
  340. import { columns, statusOptions } from "./columns";
  341. import {
  342. cg_order_type_options,
  343. cg_order_source_options,
  344. has_account_list,
  345. } from "@/assets/js/statusList";
  346. import companyHelper from "@/mixins/companyHelper";
  347. import { mapGetters } from "vuex";
  348. export default {
  349. name: "purchaseOrder",
  350. mixins: [mixinPage, resToken, companyHelper],
  351. components: {},
  352. computed: {
  353. ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
  354. powers() {
  355. const tran =
  356. this.$store.getters.btnList.find((item) => item.menu_route == "purchaseOrder") ||
  357. {};
  358. const { action } = tran ?? {};
  359. return action ?? [];
  360. },
  361. },
  362. data() {
  363. return {
  364. is_stock: [
  365. { id: "0", name: "非库存品" },
  366. { id: "1", name: "库存品" },
  367. ],
  368. supplierNo: [],
  369. tableSelection: [],
  370. //入库公司
  371. supplierName: "",
  372. has_account_list,
  373. cg_order_type_options,
  374. cg_order_source_options,
  375. //入库仓库
  376. stockName: "",
  377. changeList: [],
  378. fileUrl: urlConfig.baseURL,
  379. sitem: null,
  380. select: "1",
  381. input: "",
  382. timeOBJ: {
  383. start: "", //起始时间
  384. end: "", // 结束时间
  385. },
  386. options: ["创建时间", "最晚入库时间"],
  387. sselect: "创建时间",
  388. // 状态
  389. statusOptions: statusOptions,
  390. loading: false,
  391. showModel: false,
  392. isDetail: false,
  393. modelId: 0,
  394. wsm_code: [],
  395. // wsm_supplierNo: [],
  396. parmValue: {
  397. has_account: "",
  398. order_source: "",
  399. orderCode: "", // 订单编号
  400. bk_code: "", // 备库编码
  401. wsm_in_code: "", // 入库单号
  402. cgdNo: "", // 采购单编码
  403. apply_name: "", // 申请人
  404. good_name: "", // 产品名称
  405. good_code: "", // 产品属性编号
  406. status: "", //状态
  407. wsm_code: "", //入货仓库编码
  408. start: "", //新建起始时间
  409. end: "", // 新建结束时间
  410. last_start: "", //最后入库时间开始
  411. last_end: "", //最后入库时间结束
  412. page: 1, // 页码
  413. size: 15, // 每页显示条数
  414. supplierNo: "",
  415. company_name: "", //部门
  416. wsm_supplierNo: "",
  417. },
  418. tableData: [],
  419. passwordModel: false,
  420. passwordModelId: 0,
  421. isPasswordDetail: false,
  422. // 表格 - 数据
  423. tableData: [],
  424. // 表格 - 参数
  425. table: {
  426. stripe: true,
  427. border: true,
  428. _defaultHeader_: ["setcol"],
  429. },
  430. // 表格 - 分页
  431. pageInfo: {
  432. size: 15,
  433. curr: 1,
  434. total: 0,
  435. },
  436. // 表格 - 列参数
  437. columns: columns,
  438. };
  439. },
  440. mounted() {
  441. const { back } = this.$route.query;
  442. if (back) {
  443. this.parmValue = JSON.parse(back);
  444. console.log(this.parmValue);
  445. const { page, size, start, end, last_start, last_end } = this.parmValue;
  446. this.timeOBJ.start = start || last_start;
  447. this.timeOBJ.end = end || last_end;
  448. this.pageInfo = {
  449. size: size,
  450. curr: page,
  451. total: 0,
  452. };
  453. //多选条件
  454. this.select = this.parmValue.select;
  455. this.sselect = this.parmValue.sselect;
  456. this.input = this.parmValue.input;
  457. //入库公司
  458. // this.supplierName = localStorage.getItem("wsm_supplierNo")
  459. // if(this.supplierName.length>0){
  460. // this.wsm_supplierNo = [this.parmValue.wsm_supplierNo];
  461. // this.stockName = localStorage.getItem("wsm_code")
  462. // this.wsm_code = [this.parmValue.wsm_code]
  463. // }
  464. // console.log(this.supplierName)
  465. } else {
  466. this.select = "1";
  467. this.sselect = "创建时间";
  468. }
  469. this.searchList();
  470. },
  471. methods: {
  472. async handleBatchIn() {
  473. if (this.tableSelection.length === 0) {
  474. this.$message.warning("请选择至少一条采购单");
  475. return;
  476. }
  477. for (let i = 0; i < this.tableSelection.length; i++) {
  478. const item = this.tableSelection[i];
  479. if (item.status !== "1" && item.status !== "2") {
  480. this.$message.warning("只能选择未入库的销售订单!");
  481. return;
  482. }
  483. if (item.order_type === "1") {
  484. this.$message.warning("选择的采购单中不能包含库存品");
  485. return;
  486. }
  487. if (item.can && item.can[0].id === 6) {
  488. this.$message.warning("选择的采购单中不能包含贵金属");
  489. return;
  490. }
  491. }
  492. const cgdNo = this.tableSelection.map((item) => item.cgdNo);
  493. const { code, message } = await asyncRequest.orderBatchIn({ cgdNo });
  494. switch (code) {
  495. case 0:
  496. this.searchList();
  497. break;
  498. default:
  499. this.$message.warning(message);
  500. break;
  501. }
  502. },
  503. async supplierChange(e) {
  504. const { code, label } = e;
  505. this.supplierNo = code ? [code] : [];
  506. this.searchList();
  507. },
  508. getRouter(toRouter, queryId) {
  509. if (toRouter && queryId) {
  510. let model = {
  511. id: queryId,
  512. };
  513. //有多选框的条件
  514. this.parmValue.select = this.select;
  515. this.parmValue.sselect = this.sselect;
  516. this.parmValue.input = this.input;
  517. //
  518. let routerModel = {
  519. options: JSON.parse(JSON.stringify(this.parmValue)),
  520. router: this.$route.path,
  521. };
  522. model.preModel = JSON.stringify(routerModel);
  523. this.routeGoto(toRouter, model);
  524. } else {
  525. this.$message.warning("暂未找到相关流程!");
  526. }
  527. },
  528. //选中触发函数
  529. selection_change(e) {
  530. const { list } = e;
  531. //选中的数组集合
  532. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  533. },
  534. //导出文件
  535. async download() {
  536. if (this.changeList.length <= 0) {
  537. this.$message.warning("请选择有效数据");
  538. return;
  539. }
  540. let model = {
  541. cgdNos: [],
  542. };
  543. this.changeList.forEach((item) => {
  544. model.cgdNos.push(item.cgdNo);
  545. });
  546. // const res = await asyncRequest.exportcgdlist(model)
  547. if (!this.loading) {
  548. this.loading = true;
  549. let httpType = `aplication/zip`;
  550. axios({
  551. method: "post",
  552. url: this.fileUrl + "admin/exportcgdlist",
  553. responseType: "blob",
  554. data: model,
  555. headers: {
  556. // 'Content-Type': 'multipart/form-data',
  557. // Accept: "application/vnd.ms-excel"
  558. Accept: httpType,
  559. },
  560. })
  561. .then((res) => {
  562. // console.log(res)
  563. // console.log(this.fileUrl)
  564. // return;
  565. if (res && res.status == 200 && res.data) {
  566. let url = window.URL.createObjectURL(
  567. new Blob([res.data], {
  568. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  569. type: httpType,
  570. })
  571. );
  572. let link = document.createElement("a");
  573. link.style.display = "none";
  574. link.href = url;
  575. let excelName = "采购单.zip";
  576. link.setAttribute("download", excelName);
  577. document.body.appendChild(link);
  578. link.click();
  579. link.remove();
  580. window.URL.revokeObjectURL(url); //释放掉blob对象
  581. this.$message.success(`${message}导出成功!`);
  582. setTimeout(() => {
  583. this.loading = false;
  584. }, 500);
  585. } else {
  586. this.$message.error(res.data.message);
  587. setTimeout(() => {
  588. this.loading = false;
  589. }, 500);
  590. }
  591. })
  592. .catch((error) => {
  593. console.log(error);
  594. this.loading = false;
  595. });
  596. }
  597. },
  598. async statusConfirm() {
  599. if (this.changeList.length <= 0) {
  600. this.$message.warning("至少选择一条采购单数据!");
  601. return;
  602. }
  603. let isok = true,
  604. iss = false,
  605. list = [],
  606. errorList = [];
  607. this.changeList.forEach((e) => {
  608. if (e.status + "" !== "0") {
  609. isok = false;
  610. }
  611. if (
  612. e.has_account + "" !== "0" &&
  613. (e.order_type + "" === "2" ||
  614. e.order_type + "" === "3" ||
  615. e.order_type + "" === "4")
  616. ) {
  617. iss = true;
  618. errorList.push(e.cgdNo);
  619. }
  620. list.push(e.cgdNo);
  621. });
  622. if (!isok) {
  623. this.$message.warning("只能选择待与供应商确认的采购单!");
  624. return;
  625. }
  626. // if (iss) {
  627. // let htmlList = "<ul>";
  628. // errorList.forEach((v) => {
  629. // console.log(v);
  630. // htmlList += `<li>${v}</li>`;
  631. // });
  632. // htmlList += "</ul>";
  633. // this.$notify({
  634. // title: "以下采购单对应的供应商账号已开启,不允许在本系统操作!",
  635. // dangerouslyUseHTMLString: true,
  636. // message: htmlList,
  637. // });
  638. // return;
  639. // }
  640. await this.$confirm(`确定批量确认?`, {
  641. confirmButtonText: "确定",
  642. cancelButtonText: "取消",
  643. type: "warning",
  644. })
  645. .then(async () => {
  646. let model = {
  647. cgdNo: list,
  648. status: "1",
  649. };
  650. const { code, data, message } = await asyncRequest.status(model);
  651. this.loading = false;
  652. if (code === 0) {
  653. this.$notify.success({
  654. title: "提交成功!",
  655. message: "",
  656. });
  657. await this.searchList();
  658. } else if (code === 1003) {
  659. this.showal(data, message, "");
  660. } else if (code >= 100 && code <= 104) {
  661. await this.logout();
  662. } else {
  663. this.$message.warning(message);
  664. }
  665. })
  666. .catch(() => {
  667. console.log("取消");
  668. });
  669. },
  670. showal(list, message, code) {
  671. let htmlList = "<ul>";
  672. list.forEach((v) => {
  673. htmlList += `<li>${code !== "" ? v[code] : v}</li>`;
  674. });
  675. htmlList += "</ul>";
  676. this.$notify({
  677. title: message,
  678. dangerouslyUseHTMLString: true,
  679. message: htmlList,
  680. });
  681. },
  682. restSearch() {
  683. this.sselect = "创建时间";
  684. this.select = "1";
  685. this.input = "";
  686. this.wsm_code = [];
  687. this.wsm_supplierNo = [];
  688. this.timeOBJ = {
  689. start: "", //起始时间
  690. end: "", // 结束时间
  691. };
  692. this.parmValue = {
  693. bk_code: "", // 备库编码
  694. wsm_in_code: "", // 入库单号
  695. cgdNo: "", // 采购单编码
  696. apply_name: "", // 申请人
  697. good_name: "", // 产品名称
  698. good_code: "", // 产品属性编号
  699. status: "", //状态
  700. wsm_code: "", //入货仓库编码
  701. start: "", //新建起始时间
  702. end: "", // 新建结束时间
  703. last_start: "", //最后入库时间开始
  704. last_end: "", //最后入库时间结束
  705. orderCode: "", //订单编号
  706. company_name: "", //部门
  707. page: 1, // 页码
  708. size: 15, // 每页显示条数
  709. };
  710. // 表格 - 分页
  711. this.pageInfo = {
  712. size: 15,
  713. curr: 1,
  714. total: 0,
  715. };
  716. this.searchList();
  717. },
  718. async handleClick(e) {
  719. this.sselect = e;
  720. this.parmValue.start = e === "创建时间" ? this.timeOBJ.start : "";
  721. this.parmValue.end = e === "创建时间" ? this.timeOBJ.end : "";
  722. this.parmValue.last_start = e !== "创建时间" ? this.timeOBJ.start : "";
  723. this.parmValue.last_end = e !== "创建时间" ? this.timeOBJ.end : "";
  724. if (
  725. !(
  726. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  727. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  728. )
  729. ) {
  730. this.parmValue.page = 1;
  731. this.pageInfo.curr = 1;
  732. await this.searchList();
  733. }
  734. },
  735. // async supplierChange(e) {
  736. // if (e && e.id) {
  737. // //入库公司
  738. // // localStorage.setItem("wsm_supplierNo",e.label)
  739. // // this.supplierName = localStorage.getItem("rkNm")
  740. // this.parmValue.wsm_supplierNo = e.code;
  741. // this.wsm_supplierNo = [e.code];
  742. // } else {
  743. // //入库公司
  744. // // localStorage.setItem("wsm_supplierNo","")
  745. // this.parmValue.wsm_supplierNo = "";
  746. // this.wsm_supplierNo = [];
  747. // }
  748. // this.parmValue.wsm_code = "";
  749. // this.wsm_code = [];
  750. // this.parmValue.page = 1;
  751. // this.pageInfo.curr = 1;
  752. // await this.searchList();
  753. // },
  754. async stockChange(e) {
  755. if (e && e.id) {
  756. //入库仓库
  757. // localStorage.setItem("wsm_code",e.label)
  758. this.parmValue.wsm_code = e.code;
  759. this.wsm_code = [e.code];
  760. } else {
  761. //入库仓库
  762. // localStorage.setItem("wsm_code","")
  763. this.parmValue.wsm_code = "";
  764. this.wsm_code = [];
  765. }
  766. this.parmValue.page = 1;
  767. this.pageInfo.curr = 1;
  768. await this.searchList();
  769. },
  770. async searchList() {
  771. if (
  772. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  773. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  774. ) {
  775. this.$message.warning("时间区间不完整!");
  776. return;
  777. }
  778. this.loading = true;
  779. this.parmValue.cgdNo = this.select === "1" ? this.input : ""; // 采购单编码
  780. this.parmValue.wsm_in_code = this.select === "2" ? this.input : ""; // 入库单号
  781. this.parmValue.bk_code = this.select === "3" ? this.input : ""; // 备库编码
  782. this.parmValue.good_code = this.select === "4" ? this.input : ""; // 产品属性编号
  783. this.parmValue.good_name = this.select === "5" ? this.input : ""; // 产品名称
  784. this.parmValue.apply_name = this.select === "6" ? this.input : ""; // 申请人
  785. // this.parmValue.supplierNo = this.select === "7" ? this.input : ""; // 采购供应商编号
  786. this.parmValue.orderCode = this.select === "8" ? this.input : ""; // 采购供应商编号
  787. this.parmValue.company_name = this.select === "9" ? this.input : ""; // 部门
  788. // this.parmValue.supplier_name = this.select === "10" ? this.input : ""; // 采购供应商名称
  789. // this.wsm_supplierNo = [];
  790. const res = await asyncRequest.list({
  791. ...this.parmValue,
  792. supplierNo: Array.isArray(this.supplierNo) ? this.supplierNo[0] : this.supplierNo,
  793. needRela: true,
  794. });
  795. if (res && res.code === 0 && res.data) {
  796. this.tableData = res.data.list;
  797. this.pageInfo.total = Number(res.data.count);
  798. } else if (res && res.code >= 100 && res.code <= 104) {
  799. await this.logout();
  800. } else {
  801. this.tableData = [];
  802. this.pageInfo.total = 0;
  803. }
  804. this.loading = false;
  805. },
  806. // 时间
  807. async handleTime(e) {
  808. if (e.startTime !== "") {
  809. this.timeOBJ.start = e.startTime;
  810. } else {
  811. this.timeOBJ.start = "";
  812. }
  813. if (e.endTime !== "") {
  814. this.timeOBJ.end = e.endTime;
  815. } else {
  816. this.timeOBJ.end = "";
  817. }
  818. await this.handleClick(this.sselect);
  819. },
  820. },
  821. };
  822. </script>
  823. <style lang="scss" scoped>
  824. .purchaseOrder {
  825. // text-align: right;
  826. }
  827. </style>