index.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  1. <template>
  2. <div class="purchaseOrder pagePadding">
  3. <!-- v-if="powers.some((i) => i == '001')"-->
  4. <div>
  5. <ex-table
  6. v-loading="loading"
  7. :table="table"
  8. :data="tableData"
  9. :columns="columns"
  10. :page="pageInfo"
  11. :size="size"
  12. @page-curr-change="handlePageChange"
  13. @page-size-change="handleSizeChange"
  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. <!-- v-if="powers.some((i) => i == '089') && !isSupertube"-->
  88. <el-col
  89. :span="4"
  90. style="width: 150px; float: right"
  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="margin-right:10px">
  104. <search-work-company
  105. :value="parmValue.companyNo"
  106. :placeholder="'业务公司'"
  107. :size="searchSize"
  108. @searchChange="companyNosearchChange"
  109. />
  110. </el-col>
  111. <el-col :span="6" style="width: 500px; padding: 0 0 0 0px">
  112. <el-input
  113. clearable
  114. placeholder="关键字"
  115. v-model="input"
  116. maxlength="40"
  117. :size="searchSize"
  118. class="input-with-select"
  119. @blur="
  120. pageInfo.curr = 1;
  121. parmValue.page = 1;
  122. searchList();
  123. "
  124. >
  125. <el-select
  126. v-model="select"
  127. style="width: 125px"
  128. slot="prepend"
  129. placeholder="关键字类型"
  130. @change="
  131. pageInfo.curr = 1;
  132. parmValue.page = 1;
  133. searchList();
  134. "
  135. >
  136. <el-option label="采购单编号" value="1"></el-option>
  137. <!-- <el-option label="入库单编号" value="2"></el-option> -->
  138. <!-- 列表未渲染备库编号,注释 -->
  139. <!-- <el-option label="备库编号" value="3"></el-option> -->
  140. <el-option label="商品成本编号" value="4"></el-option>
  141. <el-option label="商品名称" value="5"></el-option>
  142. <el-option label="商品创建人" value="6"></el-option>
  143. <!-- <el-option label="采购供应商编号" value="7"></el-option> -->
  144. <!-- <el-option label="采购供应商名称" value="10"></el-option> -->
  145. <el-option label="订单编号" value="8"></el-option>
  146. <el-option label="商品创建人部门" value="9"></el-option>
  147. </el-select>
  148. </el-input>
  149. </el-col>
  150. <el-col :span="4" style="width: 66px; float: right">
  151. <el-button
  152. type="warning"
  153. class="fr"
  154. :size="searchSize"
  155. @click="restSearch"
  156. >
  157. 重置
  158. </el-button>
  159. </el-col>
  160. <!-- 暂时注释,下版需要导出 -->
  161. <!--v-if="powers.some((i) => i == '087')"-->
  162. <el-col
  163. :span="4"
  164. style="width: 66px; float: right"
  165. >
  166. <el-button
  167. type="primary"
  168. style="margin-left: 30px"
  169. @click="download"
  170. :size="searchSize"
  171. class="fr"
  172. >
  173. 导出
  174. </el-button>
  175. </el-col>
  176. </el-row>
  177. </div>
  178. </template>
  179. <template #good_name="{ scope }">
  180. <span>{{ scope.row.good_name }}</span>
  181. <span v-for="(si, i) in scope.row.speclist" :key="si.spec_id + i">
  182. {{ i === 0 ? "__" : "--" }}{{ si.spec_name }}[{{ si.spec_value }}]
  183. </span>
  184. </template>
  185. <template #status="{ scope }">
  186. <el-tag
  187. :size="tablebtnSize"
  188. v-text="
  189. (statusOptions.find((item) => item.value == scope.row.status) || {})
  190. .label || '--'
  191. "
  192. ></el-tag>
  193. </template>
  194. <template #order_id="{ scope }">
  195. <el-tag
  196. :size="tablebtnSize"
  197. v-text="
  198. (
  199. cg_order_type_options.find((item) => item.id == scope.row.order_type) ||
  200. {}
  201. ).label || '--'
  202. "
  203. ></el-tag>
  204. </template>
  205. <!-- v-if="powers.some((i) => i == '007')"-->
  206. <template #operation="{ scope }">
  207. <el-tooltip
  208. effect="dark"
  209. content="详情"
  210. placement="top"
  211. >
  212. <i
  213. class="el-icon-view tb-icon"
  214. @click="getRouter('supplierPurchaseOrderDetail', scope.row.cgdNo)"
  215. ></i>
  216. </el-tooltip>
  217. </template>
  218. </ex-table>
  219. </div>
  220. <!-- <div v-else>-->
  221. <!-- <no-auth></no-auth>-->
  222. <!-- </div>-->
  223. </div>
  224. </template>
  225. <script>
  226. import mixinPage from "@/mixins/elPaginationHandle";
  227. import resToken from "@/mixins/resToken";
  228. import companyHelper from "@/mixins/companyHelper"
  229. import urlConfig from "@/apis/url-config";
  230. import asyncRequest from "@/apis/service/purchaseIn/purchaseOrder";
  231. import { columns, statusOptions } from "./columns";
  232. import { cg_order_type_options } from "@/assets/js/statusList";
  233. import { mapGetters } from "vuex";
  234. export default {
  235. name: "purchaseOrder",
  236. mixins: [mixinPage, resToken, companyHelper],
  237. components: {},
  238. computed: {
  239. ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube", "currentLevel"]),
  240. powers() {
  241. const tran =
  242. this.$store.getters.btnList.find((item) => item.menu_route == "supplierPurchaseOrder") ||
  243. {};
  244. const { action } = tran ?? {};
  245. return action ?? [];
  246. },
  247. },
  248. data() {
  249. return {
  250. //入库公司
  251. supplierName: "",
  252. cg_order_type_options,
  253. //入库仓库
  254. stockName: "",
  255. changeList: [],
  256. fileUrl: urlConfig.baseURL,
  257. sitem: null,
  258. select: "1",
  259. input: "",
  260. timeOBJ: {
  261. start: "", //起始时间
  262. end: "", // 结束时间
  263. },
  264. options: ["创建时间", "最晚入库时间"],
  265. sselect: "创建时间",
  266. // 状态
  267. statusOptions: statusOptions,
  268. loading: false,
  269. showModel: false,
  270. isDetail: false,
  271. modelId: 0,
  272. wsm_code: [],
  273. wsm_supplierNo: [],
  274. parmValue: {
  275. companyNo: "",
  276. orderCode: "", // 订单编号
  277. bk_code: "", // 备库编码
  278. wsm_in_code: "", // 入库单号
  279. cgdNo: "", // 采购单编码
  280. apply_name: "", // 申请人
  281. good_name: "", // 产品名称
  282. good_code: "", // 产品属性编号
  283. status: "", //状态
  284. wsm_code: "", //入货仓库编码
  285. start: "", //新建起始时间
  286. end: "", // 新建结束时间
  287. last_start: "", //最后入库时间开始
  288. last_end: "", //最后入库时间结束
  289. page: 1, // 页码
  290. size: 15, // 每页显示条数
  291. supplierNo: "",
  292. company_name: "", //部门
  293. wsm_supplierNo: "",
  294. },
  295. tableData: [],
  296. passwordModel: false,
  297. passwordModelId: 0,
  298. isPasswordDetail: false,
  299. // 表格 - 数据
  300. tableData: [],
  301. // 表格 - 参数
  302. table: {
  303. stripe: true,
  304. border: true,
  305. _defaultHeader_: ["setcol"],
  306. },
  307. // 表格 - 分页
  308. pageInfo: {
  309. size: 15,
  310. curr: 1,
  311. total: 0,
  312. },
  313. // 表格 - 列参数
  314. columns: columns,
  315. };
  316. },
  317. mounted() {
  318. const { back } = this.$route.query;
  319. if (back) {
  320. this.parmValue = JSON.parse(back);
  321. console.log(this.parmValue);
  322. const { page, size, start, end, last_start, last_end } = this.parmValue;
  323. this.timeOBJ.start = start || last_start;
  324. this.timeOBJ.end = end || last_end;
  325. this.pageInfo = {
  326. size: size,
  327. curr: page,
  328. total: 0,
  329. };
  330. //多选条件
  331. this.select = this.parmValue.select;
  332. this.sselect = this.parmValue.sselect;
  333. this.input = this.parmValue.input;
  334. //入库公司
  335. // this.supplierName = localStorage.getItem("wsm_supplierNo")
  336. // if(this.supplierName.length>0){
  337. // this.wsm_supplierNo = [this.parmValue.wsm_supplierNo];
  338. // this.stockName = localStorage.getItem("wsm_code")
  339. // this.wsm_code = [this.parmValue.wsm_code]
  340. // }
  341. // console.log(this.supplierName)
  342. } else {
  343. this.select = "1";
  344. this.sselect = "创建时间";
  345. }
  346. this.searchList();
  347. },
  348. methods: {
  349. companyNosearchChange({code}){
  350. this.parmValue.companyNo = code
  351. this.searchList()
  352. },
  353. getRouter(toRouter, queryId) {
  354. if (toRouter && queryId) {
  355. let model = {
  356. id: queryId,
  357. };
  358. //有多选框的条件
  359. this.parmValue.select = this.select;
  360. this.parmValue.sselect = this.sselect;
  361. this.parmValue.input = this.input;
  362. //
  363. let routerModel = {
  364. options: JSON.parse(JSON.stringify(this.parmValue)),
  365. router: this.$route.path,
  366. };
  367. model.preModel = JSON.stringify(routerModel);
  368. this.routeGoto(toRouter, model);
  369. } else {
  370. this.$message.warning("暂未找到相关流程!");
  371. }
  372. },
  373. //选中触发函数
  374. selection_change(e) {
  375. const { list } = e;
  376. //选中的数组集合
  377. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  378. },
  379. //导出文件
  380. async download() {
  381. if (this.changeList.length <= 0) {
  382. this.$message.warning("请选择有效数据");
  383. return;
  384. }
  385. let model = {
  386. cgdNos: [],
  387. };
  388. this.changeList.forEach((item) => {
  389. model.cgdNos.push(item.cgdNo);
  390. });
  391. // const res = await asyncRequest.exportcgdlist(model)
  392. if (!this.loading) {
  393. this.loading = true;
  394. let httpType = `aplication/zip`;
  395. axios({
  396. method: "post",
  397. url: this.fileUrl + "admin/exportcgdlist",
  398. responseType: "blob",
  399. data: model,
  400. headers: {
  401. // 'Content-Type': 'multipart/form-data',
  402. // Accept: "application/vnd.ms-excel"
  403. Accept: httpType,
  404. },
  405. })
  406. .then((res) => {
  407. // console.log(res)
  408. // console.log(this.fileUrl)
  409. // return;
  410. if (res && res.status == 200 && res.data) {
  411. let url = window.URL.createObjectURL(
  412. new Blob([res.data], {
  413. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  414. type: httpType,
  415. })
  416. );
  417. let link = document.createElement("a");
  418. link.style.display = "none";
  419. link.href = url;
  420. let excelName = "采购单.zip";
  421. link.setAttribute("download", excelName);
  422. document.body.appendChild(link);
  423. link.click();
  424. link.remove();
  425. window.URL.revokeObjectURL(url); //释放掉blob对象
  426. this.$message.success(`${message}导出成功!`);
  427. setTimeout(() => {
  428. this.loading = false;
  429. }, 500);
  430. } else {
  431. this.$message.error(res.data.message);
  432. setTimeout(() => {
  433. this.loading = false;
  434. }, 500);
  435. }
  436. })
  437. .catch((error) => {
  438. console.log(error);
  439. this.loading = false;
  440. });
  441. }
  442. },
  443. async statusConfirm() {
  444. if (this.changeList.length <= 0) {
  445. this.$message.warning("至少选择一条采购单数据!");
  446. return;
  447. }
  448. let isok = true,
  449. iss = false,
  450. list = [],
  451. errorList = [];
  452. this.changeList.forEach((e) => {
  453. if (e.status + "" !== "0") {
  454. isok = false;
  455. }
  456. if (
  457. (e.order_type + "" === "2" ||
  458. e.order_type + "" === "3" ||
  459. e.order_type + "" === "4")
  460. ) {
  461. iss = true;
  462. errorList.push(e.cgdNo);
  463. }
  464. list.push(e.cgdNo);
  465. });
  466. if (!isok) {
  467. this.$message.warning("只能选择待与供应商确认的采购单!");
  468. return;
  469. }
  470. // if (iss) {
  471. // let htmlList = "<ul>";
  472. // errorList.forEach((v) => {
  473. // console.log(v);
  474. // htmlList += `<li>${v}</li>`;
  475. // });
  476. // htmlList += "</ul>";
  477. // this.$notify({
  478. // title: "以下采购单对应的供应商账号已开启,不允许在本系统操作!",
  479. // dangerouslyUseHTMLString: true,
  480. // message: htmlList,
  481. // });
  482. // return;
  483. // }
  484. await this.$confirm(`确定批量确认?`, {
  485. confirmButtonText: "确定",
  486. cancelButtonText: "取消",
  487. type: "warning",
  488. })
  489. .then(async () => {
  490. let model = {
  491. cgdNo: list,
  492. status: "1",
  493. };
  494. const { code, data, message } = await asyncRequest.status(model);
  495. this.loading = false;
  496. if (code === 0) {
  497. this.$notify.success({
  498. title: "提交成功!",
  499. message: "",
  500. });
  501. await this.searchList();
  502. } else if (code === 1003) {
  503. this.showal(data, message, "");
  504. } else if (code >= 100 && code <= 104) {
  505. await this.logout();
  506. } else {
  507. this.$message.warning(message);
  508. }
  509. })
  510. .catch(() => {
  511. console.log("取消");
  512. });
  513. },
  514. showal(list, message, code) {
  515. let htmlList = "<ul>";
  516. list.forEach((v) => {
  517. htmlList += `<li>${code !== "" ? v[code] : v}</li>`;
  518. });
  519. htmlList += "</ul>";
  520. this.$notify({
  521. title: message,
  522. dangerouslyUseHTMLString: true,
  523. message: htmlList,
  524. });
  525. },
  526. restSearch() {
  527. this.sselect = "创建时间";
  528. this.select = "1";
  529. this.input = "";
  530. this.wsm_code = [];
  531. this.wsm_supplierNo = [];
  532. this.timeOBJ = {
  533. start: "", //起始时间
  534. end: "", // 结束时间
  535. };
  536. this.parmValue = {
  537. bk_code: "", // 备库编码
  538. wsm_in_code: "", // 入库单号
  539. cgdNo: "", // 采购单编码
  540. apply_name: "", // 申请人
  541. good_name: "", // 产品名称
  542. good_code: "", // 产品属性编号
  543. status: "", //状态
  544. wsm_code: "", //入货仓库编码
  545. start: "", //新建起始时间
  546. end: "", // 新建结束时间
  547. last_start: "", //最后入库时间开始
  548. last_end: "", //最后入库时间结束
  549. orderCode: "", //订单编号
  550. company_name: "", //部门
  551. page: 1, // 页码
  552. size: 15, // 每页显示条数
  553. };
  554. // 表格 - 分页
  555. this.pageInfo = {
  556. size: 15,
  557. curr: 1,
  558. total: 0,
  559. };
  560. this.searchList();
  561. },
  562. async handleClick(e) {
  563. this.sselect = e;
  564. this.parmValue.start = e === "创建时间" ? this.timeOBJ.start : "";
  565. this.parmValue.end = e === "创建时间" ? this.timeOBJ.end : "";
  566. this.parmValue.last_start = e !== "创建时间" ? this.timeOBJ.start : "";
  567. this.parmValue.last_end = e !== "创建时间" ? this.timeOBJ.end : "";
  568. if (
  569. !(
  570. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  571. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  572. )
  573. ) {
  574. this.parmValue.page = 1;
  575. this.pageInfo.curr = 1;
  576. await this.searchList();
  577. }
  578. },
  579. async supplierChange(e) {
  580. if (e && e.id) {
  581. //入库公司
  582. // localStorage.setItem("wsm_supplierNo",e.label)
  583. // this.supplierName = localStorage.getItem("rkNm")
  584. this.parmValue.wsm_supplierNo = e.code;
  585. this.wsm_supplierNo = [e.code];
  586. } else {
  587. //入库公司
  588. // localStorage.setItem("wsm_supplierNo","")
  589. this.parmValue.wsm_supplierNo = "";
  590. this.wsm_supplierNo = [];
  591. }
  592. this.parmValue.wsm_code = "";
  593. this.wsm_code = [];
  594. this.parmValue.page = 1;
  595. this.pageInfo.curr = 1;
  596. await this.searchList();
  597. },
  598. async stockChange(e) {
  599. if (e && e.id) {
  600. //入库仓库
  601. // localStorage.setItem("wsm_code",e.label)
  602. this.parmValue.wsm_code = e.code;
  603. this.wsm_code = [e.code];
  604. } else {
  605. //入库仓库
  606. // localStorage.setItem("wsm_code","")
  607. this.parmValue.wsm_code = "";
  608. this.wsm_code = [];
  609. }
  610. this.parmValue.page = 1;
  611. this.pageInfo.curr = 1;
  612. await this.searchList();
  613. },
  614. async searchList() {
  615. if (
  616. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  617. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  618. ) {
  619. this.$message.warning("时间区间不完整!");
  620. return;
  621. }
  622. this.loading = true;
  623. this.parmValue.cgdNo = this.select === "1" ? this.input : ""; // 采购单编码
  624. this.parmValue.wsm_in_code = this.select === "2" ? this.input : ""; // 入库单号
  625. this.parmValue.bk_code = this.select === "3" ? this.input : ""; // 备库编码
  626. this.parmValue.good_code = this.select === "4" ? this.input : ""; // 产品属性编号
  627. this.parmValue.good_name = this.select === "5" ? this.input : ""; // 产品名称
  628. this.parmValue.apply_name = this.select === "6" ? this.input : ""; // 申请人
  629. this.parmValue.supplierNo = this.select === "7" ? this.input : ""; // 采购供应商编号
  630. this.parmValue.orderCode = this.select === "8" ? this.input : ""; // 采购供应商编号
  631. this.parmValue.company_name = this.select === "9" ? this.input : ""; // 部门
  632. this.parmValue.supplier_name = this.select === "10" ? this.input : ""; // 采购供应商名称
  633. this.parmValue.supplierNo = this.currentCompany
  634. // this.wsm_supplierNo = [];
  635. this.parmValue.noRelation = true
  636. const res = await asyncRequest.list(this.parmValue);
  637. if (res && res.code === 0 && res.data) {
  638. this.tableData = res.data.list;
  639. this.pageInfo.total = Number(res.data.count);
  640. } else if (res && res.code >= 100 && res.code <= 104) {
  641. await this.logout();
  642. } else {
  643. this.tableData = [];
  644. this.pageInfo.total = 0;
  645. }
  646. this.loading = false;
  647. },
  648. // 时间
  649. async handleTime(e) {
  650. if (e.startTime !== "") {
  651. this.timeOBJ.start = e.startTime;
  652. } else {
  653. this.timeOBJ.start = "";
  654. }
  655. if (e.endTime !== "") {
  656. this.timeOBJ.end = e.endTime;
  657. } else {
  658. this.timeOBJ.end = "";
  659. }
  660. await this.handleClick(this.sselect);
  661. },
  662. },
  663. };
  664. </script>
  665. <style lang="scss" scoped>
  666. .purchaseOrder {
  667. // text-align: right;
  668. }
  669. </style>