index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. <template>
  2. <div class="sellOutOrder pagePadding">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  5. >
  6. <ex-table
  7. v-loading="loading"
  8. :table="table"
  9. :data="tableData"
  10. :columns="columns"
  11. :page="pageInfo"
  12. :size="size"
  13. @page-curr-change="handlePageChange"
  14. @page-size-change="handleSizeChange"
  15. @screen-reset="
  16. pageInfo.curr = 1;
  17. parmValue.page = 1;
  18. searchList();
  19. "
  20. @screen-submit="
  21. pageInfo.curr = 1;
  22. parmValue.page = 1;
  23. searchList();
  24. "
  25. @selection="selection_change"
  26. >
  27. <template #table-header="{}">
  28. <div style="width: 100%">
  29. <el-row style="padding: 0 0 0 80px">
  30. <el-col :span="4" style="width: 291px">
  31. <period-date-picker
  32. :type="1"
  33. :start="parmValue.start"
  34. :end="parmValue.end"
  35. :width="'134px'"
  36. :size="searchSize"
  37. @timeReturned="handleTime"
  38. />
  39. </el-col>
  40. <el-col :span="4" style="width: 320px; padding: 0px 0 0 10px">
  41. <search-customer
  42. :value="customerCode"
  43. :size="searchSize"
  44. :placeholder="'客户公司名称'"
  45. :names="parmValue.supplierName"
  46. :is-detail="true"
  47. @searchChange="customerChange"
  48. />
  49. </el-col>
  50. <el-col :span="3" style="width: 66px; float: right">
  51. <el-button
  52. :size="searchSize"
  53. type="primary"
  54. style="float: right; margin-left: 5px"
  55. @click="searchList"
  56. >
  57. 刷新
  58. </el-button>
  59. </el-col>
  60. <el-col
  61. :span="4"
  62. style="width: 66px; float: right"
  63. v-if="
  64. powers &&
  65. powers.length > 0 &&
  66. powers.some((item) => item == '087')
  67. "
  68. >
  69. <el-button
  70. type="primary"
  71. style="margin-left: 30px"
  72. @click="download"
  73. :size="searchSize"
  74. class="fr"
  75. >
  76. 导出
  77. </el-button>
  78. </el-col>
  79. </el-row>
  80. <el-row style="padding-top: 10px">
  81. <el-col :span="4" style="width: 150px">
  82. <el-select
  83. :size="searchSize"
  84. v-model="parmValue.status"
  85. filterable
  86. clearable
  87. placeholder="状态"
  88. style="width: 100%"
  89. @change="
  90. pageInfo.curr = 1;
  91. parmValue.page = 1;
  92. searchList();
  93. "
  94. >
  95. <el-option
  96. v-for="item in statusOptions"
  97. :key="'status' + item.id"
  98. :label="item.label"
  99. :value="item.id"
  100. />
  101. </el-select>
  102. </el-col>
  103. <el-col :span="4" style="width: 500px; padding: 0 0 0 10px">
  104. <el-input
  105. clearable
  106. :size="searchSize"
  107. placeholder="关键字"
  108. v-model="s_input"
  109. maxlength="40"
  110. class="input-with-select"
  111. >
  112. <el-select
  113. style="width: 140px"
  114. v-model="select"
  115. slot="prepend"
  116. placeholder="关键字类型"
  117. >
  118. <el-option label="销售订单编号" value="orderCode" />
  119. <el-option label="发货申请单编号" value="outCode" />
  120. <!-- <el-option label="供应商编号" value="supplierNo" /> -->
  121. <el-option label="商品编号" value="good_code" />
  122. <el-option label="商品名称" value="good_name" />
  123. <el-option label="申请人部门" value="company_name" />
  124. <el-option label="申请人" value="apply_name" />
  125. <el-option label="采购单编号" value="cgdNo" />
  126. </el-select>
  127. <el-button
  128. slot="append"
  129. icon="el-icon-search"
  130. @click="
  131. pageInfo.curr = 1;
  132. parmValue.page = 1;
  133. handleValue();
  134. "
  135. ></el-button>
  136. </el-input>
  137. </el-col>
  138. <el-col :span="4" style="width: 66px" class="fr">
  139. <el-button
  140. type="warning"
  141. class="fr"
  142. :size="searchSize"
  143. @click="restSearch"
  144. >
  145. 重置
  146. </el-button>
  147. </el-col>
  148. <el-col
  149. :span="4"
  150. style="width: 66px; float: right"
  151. v-if="
  152. powers &&
  153. powers.length > 0 &&
  154. powers.some((item) => item == '090')
  155. "
  156. >
  157. <el-button
  158. type="primary"
  159. style="margin-left: 30px"
  160. @click="routeGoto('sendOutOrder', {})"
  161. :size="searchSize"
  162. class="fr"
  163. >
  164. 批量发货
  165. </el-button>
  166. </el-col>
  167. </el-row>
  168. </div>
  169. </template>
  170. <template #status="{ scope }">
  171. <el-tag
  172. :size="tablebtnSize"
  173. :type="scope.row.status == '0' ? 'warning' : ''"
  174. v-text="
  175. (statusOptions.find((item) => item.id == scope.row.status) || {})
  176. .label || '--'
  177. "
  178. ></el-tag>
  179. </template>
  180. <template #operation="{ scope }">
  181. <el-tooltip
  182. v-if="powers.some((item) => item == '007')"
  183. effect="dark"
  184. content="详情"
  185. placement="top"
  186. >
  187. <i
  188. class="el-icon-view tb-icon"
  189. @click="getRouter('sellOutOrderDetail', scope.row.outCode)"
  190. ></i>
  191. </el-tooltip>
  192. </template>
  193. </ex-table>
  194. <add-edit
  195. :id="modelId"
  196. :sitem="sitem"
  197. :show-model="showModel"
  198. :is-detail="isDetail"
  199. @refresh="searchList"
  200. @cancel="showModel = false"
  201. />
  202. </div>
  203. <div v-else>
  204. <no-auth></no-auth>
  205. </div>
  206. </div>
  207. </template>
  208. <script>
  209. import mixinPage from "@/mixins/elPaginationHandle";
  210. import resToken from "@/mixins/resToken";
  211. import { mapGetters } from "vuex";
  212. import urlConfig from "@/apis/url-config";
  213. import asyncRequest from "@/apis/service/sellOut/sellOutOrder";
  214. import addEdit from "./components/addEdit.vue";
  215. import { columns } from "./columns";
  216. export default {
  217. name: "sellOutOrder",
  218. mixins: [mixinPage, resToken],
  219. components: {
  220. addEdit,
  221. },
  222. computed: {
  223. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  224. powers() {
  225. let tran =
  226. this.$store.getters.btnList.find(
  227. (item) => item.menu_route == "sellOutOrder"
  228. ) || {};
  229. if (tran && tran.action && tran.action.length > 0) {
  230. return tran.action;
  231. } else {
  232. return [];
  233. }
  234. },
  235. },
  236. data() {
  237. return {
  238. select: "orderCode",
  239. s_input: "",
  240. customerCode: [], //客户公司code
  241. fileUrl: urlConfig.baseURL,
  242. changeList: [],
  243. // post_ownOptions: [
  244. // { id: "1", label: "客户承担" },
  245. // { id: "2", label: "公司承担" },
  246. // { id: "3", label: "供应商承担" },
  247. // ],
  248. sitem: null,
  249. // 状态
  250. statusOptions: [
  251. { id: "0", label: "待发货" },
  252. { id: "1", label: "待库管发货" },
  253. { id: "2", label: "已发货待收货" },
  254. { id: "3", label: "已收货" },
  255. { id: "4", label: "已全部退货" },
  256. ],
  257. loading: true,
  258. showModel: false,
  259. isDetail: false,
  260. modelId: 0,
  261. parmValue: {
  262. order_type: "",
  263. orderCode: "",
  264. apply_name: "", //申请人名称
  265. cgdNo: "",
  266. start: "",
  267. end: "",
  268. // supplierNo: "",
  269. companyNo: "",
  270. good_code: "",
  271. good_name: "",
  272. outCode: "",
  273. status: "",
  274. company_name: "", //申请人部门
  275. page: 1, // 页码
  276. size: 15, // 每页显示条数
  277. },
  278. // 表格 - 数据
  279. tableData: [],
  280. // 表格 - 参数
  281. table: {
  282. stripe: true,
  283. border: true,
  284. _defaultHeader_: ["setcol"],
  285. },
  286. // 表格 - 分页
  287. pageInfo: {
  288. size: 15,
  289. curr: 1,
  290. total: 0,
  291. },
  292. // 表格 - 列参数
  293. columns: columns,
  294. };
  295. },
  296. mounted() {
  297. // return;
  298. const { back } = this.$route.query;
  299. if (back) {
  300. this.parmValue = JSON.parse(back);
  301. console.log(this.parmValue);
  302. const { page, size } = this.parmValue;
  303. // this.parmValue.start = start || last_start;
  304. // this.parmValue.end = end || last_end;
  305. if (this.parmValue.companyNo.length > 0) {
  306. this.customerCode = [this.parmValue.companyNo];
  307. }
  308. this.pageInfo = {
  309. size: size,
  310. curr: page,
  311. total: 0,
  312. };
  313. //多选条件
  314. this.select = this.parmValue.select;
  315. // this.sselect = this.parmValue.sselect;
  316. this.s_input = this.parmValue.s_input;
  317. } else {
  318. this.select = "orderCode";
  319. // this.sselect = "创建时间"
  320. }
  321. this.searchList();
  322. },
  323. methods: {
  324. getRouter(toRouter, queryId) {
  325. if (toRouter && queryId) {
  326. let model = {
  327. id: queryId,
  328. // type: 'view',
  329. };
  330. //有多选框的条件
  331. this.parmValue.select = this.select;
  332. // this.parmValue.sselect = this.sselect ;
  333. this.parmValue.s_input = this.s_input;
  334. //
  335. let routerModel = {
  336. options: JSON.parse(JSON.stringify(this.parmValue)),
  337. router: this.$route.path,
  338. };
  339. model.preModel = JSON.stringify(routerModel);
  340. this.routeGoto(toRouter, model);
  341. } else {
  342. this.$message.warning("暂未找到相关流程!");
  343. }
  344. },
  345. //选中触发函数
  346. selection_change(e) {
  347. const { list } = e;
  348. //选中的数组集合
  349. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  350. },
  351. //导出文件 ()
  352. async download() {
  353. if (this.changeList.length <= 0) {
  354. this.$message.warning("请选择有效数据");
  355. return;
  356. }
  357. let model = {
  358. outCodes: [],
  359. };
  360. this.changeList.forEach((item) => {
  361. model.outCodes.push(item.outCode);
  362. });
  363. // const res = await asyncRequest.exportcgdlist(model)
  364. if (!this.loading) {
  365. this.loading = true;
  366. let httpType = `aplication/zip`;
  367. axios({
  368. method: "post",
  369. url: this.fileUrl + "admin/exportsaleout",
  370. responseType: "blob",
  371. data: model,
  372. headers: {
  373. // 'Content-Type': 'multipart/form-data',
  374. // Accept: "application/vnd.ms-excel"
  375. Accept: httpType,
  376. },
  377. })
  378. .then((res) => {
  379. // console.log(res)
  380. // console.log(this.fileUrl)
  381. // return;
  382. if (res && res.status == 200 && res.data) {
  383. let url = window.URL.createObjectURL(
  384. new Blob([res.data], {
  385. // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
  386. type: httpType,
  387. })
  388. );
  389. let link = document.createElement("a");
  390. link.style.display = "none";
  391. link.href = url;
  392. let excelName = "发货申请单.zip";
  393. link.setAttribute("download", excelName);
  394. document.body.appendChild(link);
  395. link.click();
  396. link.remove();
  397. window.URL.revokeObjectURL(url); //释放掉blob对象
  398. this.$message.success(`${message}导出成功!`);
  399. setTimeout(() => {
  400. this.loading = false;
  401. }, 500);
  402. } else {
  403. this.$message.error(res.data.message);
  404. setTimeout(() => {
  405. this.loading = false;
  406. }, 500);
  407. }
  408. })
  409. .catch((error) => {
  410. console.log(error);
  411. this.loading = false;
  412. });
  413. }
  414. },
  415. restSearch() {
  416. this.customerCode = [];
  417. this.select = "orderCode";
  418. this.s_input = "";
  419. this.parmValue = {
  420. order_type: "",
  421. orderCode: "",
  422. apply_name: "", //申请人名称
  423. cgdNo: "",
  424. start: "",
  425. end: "",
  426. // supplierNo: "",
  427. companyNo: "",
  428. good_code: "",
  429. good_name: "",
  430. outCode: "",
  431. status: "",
  432. company_name: "", //申请人部门
  433. page: 1, // 页码
  434. size: 15, // 每页显示条数
  435. };
  436. // 表格 - 分页
  437. this.pageInfo = {
  438. size: 15,
  439. curr: 1,
  440. total: 0,
  441. };
  442. this.searchList();
  443. },
  444. openModal(id, isDetail, sitem) {
  445. this.showModel = true;
  446. this.modelId = id;
  447. this.isDetail = isDetail;
  448. this.sitem = sitem;
  449. },
  450. async deleteById(id, status) {
  451. await this.$confirm("确定要删除?", {
  452. confirmButtonText: "确定",
  453. cancelButtonText: "取消",
  454. type: "warning",
  455. })
  456. .then(async () => {
  457. const model = {
  458. id: id,
  459. status: status === "1" ? "0" : "1",
  460. };
  461. const res = await asyncRequest.status(model);
  462. if (res && res.code === 0) {
  463. this.$notify.success({
  464. title: "删除成功",
  465. message: "",
  466. });
  467. this.searchList();
  468. } else if (res && res.code >= 100 && res.code <= 104) {
  469. await this.logout();
  470. } else {
  471. this.$message.warning(res.message);
  472. }
  473. })
  474. .catch(() => {
  475. console.log("取消");
  476. });
  477. },
  478. // 列表搜索
  479. async searchList() {
  480. if (
  481. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  482. (this.parmValue.start === "" && this.parmValue.end !== "")
  483. ) {
  484. this.$message.warning("时间区间不完整!");
  485. return;
  486. }
  487. this.loading = true;
  488. let model = JSON.parse(JSON.stringify(this.parmValue));
  489. const res = await asyncRequest.list(model);
  490. if (res && res.code === 0 && res.data) {
  491. this.tableData = res.data.list;
  492. this.pageInfo.total = Number(res.data.count);
  493. this.tableData.forEach((v) => {
  494. v.good_class = "";
  495. if (v.can && v.can.length > 0) {
  496. v.can.forEach((x, i) => {
  497. v.good_class += i === 0 ? x.name : "/" + x.name;
  498. });
  499. }
  500. });
  501. } else if (res && res.code >= 100 && res.code <= 104) {
  502. await this.logout();
  503. } else {
  504. this.tableData = [];
  505. this.pageInfo.total = 0;
  506. }
  507. this.loading = false;
  508. },
  509. async statusConfirm(id, status) {
  510. let str = status === "1" ? "禁用" : "启用";
  511. await this.$confirm("确定要改为" + str + "?", {
  512. confirmButtonText: "确定",
  513. cancelButtonText: "取消",
  514. type: "warning",
  515. })
  516. .then(async () => {
  517. this.loading = true;
  518. const model = {
  519. id: id,
  520. status: status === "1" ? "0" : "1",
  521. };
  522. const res = await asyncRequest.status(model);
  523. if (res && res.code === 0) {
  524. this.loading = false;
  525. this.$notify.success({
  526. title: "状态修改成功!",
  527. message: "",
  528. });
  529. await this.searchList();
  530. } else if (res && res.code >= 100 && res.code <= 104) {
  531. await this.logout();
  532. } else {
  533. this.$message.warning(res.message);
  534. }
  535. })
  536. .catch(() => {
  537. console.log("取消");
  538. });
  539. },
  540. // 时间选择事件
  541. async handleTime(e) {
  542. if (e.startTime !== "") {
  543. this.parmValue.start = e.startTime;
  544. } else {
  545. this.parmValue.start = "";
  546. }
  547. if (e.endTime !== "") {
  548. this.parmValue.end = e.endTime;
  549. } else {
  550. this.parmValue.end = "";
  551. }
  552. if (this.parmValue.start !== "" && this.parmValue.end !== "") {
  553. this.pageInfo.curr = 1;
  554. this.parmValue.page = 1;
  555. await this.searchList();
  556. }
  557. },
  558. async customerChange(e) {
  559. if (e && e.id) {
  560. this.customerCode = [e.code];
  561. this.parmValue.supplierName = e.label;
  562. this.parmValue.companyNo = e.code;
  563. } else {
  564. this.customerCode = [];
  565. this.parmValue.supplierName = "";
  566. this.parmValue.companyNo = "";
  567. }
  568. this.pageInfo.curr = 1;
  569. this.parmValue.page = 1;
  570. await this.searchList();
  571. },
  572. async handleValue() {
  573. this.parmValue.orderCode =
  574. this.select === "orderCode" ? this.s_input : "";
  575. this.parmValue.outCode = this.select === "outCode" ? this.s_input : "";
  576. // this.parmValue.supplierNo =
  577. // this.select === "supplierNo" ? this.s_input : "";
  578. this.parmValue.good_code =
  579. this.select === "good_code" ? this.s_input : "";
  580. this.parmValue.good_name =
  581. this.select === "good_name" ? this.s_input : "";
  582. this.parmValue.apply_name =
  583. this.select === "apply_name" ? this.s_input : "";
  584. this.parmValue.cgdNo = this.select === "cgdNo" ? this.s_input : "";
  585. this.parmValue.company_name =
  586. this.select === "company_name" ? this.s_input : "";
  587. await this.searchList();
  588. },
  589. },
  590. };
  591. </script>
  592. <style lang="scss" scoped>
  593. .zxoutOrder {
  594. }
  595. </style>