index.vue 18 KB

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