index.vue 21 KB

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