index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. <template>
  2. <div class="salesOrder 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. @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. >
  26. <template #table-header="{ selection }">
  27. <div style="width: 100%">
  28. <el-row style="padding: 0 0 0 80px">
  29. <el-col :span="6" style="width: 293px; padding: 0 0 0 0px">
  30. <period-date-picker
  31. :type="1"
  32. :width="'135px'"
  33. :size="searchSize"
  34. :start="parmValue.start"
  35. :end="parmValue.end"
  36. @timeReturned="handleTime"
  37. />
  38. </el-col>
  39. <el-col :span="4" style="width: 148px; padding: 0 0 0 8px">
  40. <el-select
  41. :size="searchSize"
  42. v-model="parmValue.status"
  43. filterable
  44. clearable
  45. placeholder="订单状态"
  46. style="width: 100%"
  47. @change="
  48. pageInfo.curr = 1;
  49. parmValue.page = 1;
  50. searchList();
  51. "
  52. >
  53. <el-option
  54. v-for="item in statusOptions"
  55. :key="'status' + item.id"
  56. :label="item.label"
  57. :value="item.id"
  58. />
  59. </el-select>
  60. </el-col>
  61. <!-- 客户公司 -->
  62. <el-col :span="4" style="width: 240px; padding: 0 0 0 10px">
  63. <search-work-company
  64. :type="'1'"
  65. :value="parmValue.supplierNo"
  66. :size="'mini'"
  67. :placeholder="'销售方公司'"
  68. :disabled="false"
  69. :isDetail="false"
  70. @searchChange="supplierChange"
  71. />
  72. </el-col>
  73. <el-col :span="3" style="width: 66px; float: right">
  74. <el-button
  75. :size="searchSize"
  76. type="primary"
  77. style="float: right; margin-left: 5px"
  78. @click="searchList"
  79. >
  80. 刷新
  81. </el-button>
  82. </el-col>
  83. <el-col :span="3" style="width: 66px; float: right" v-if="!isSupertube">
  84. <el-button
  85. :size="searchSize"
  86. type="primary"
  87. style="float: right; margin-left: 5px"
  88. @click="set_user(selection)"
  89. >
  90. 设置订单用途
  91. </el-button>
  92. </el-col>
  93. </el-row>
  94. <el-row style="padding: 10px 0 0 0">
  95. <el-col :span="6" style="width: 371px">
  96. <search-customer
  97. :value="customerCode"
  98. :size="searchSize"
  99. :names="parmValue.supplierName"
  100. :is-detail="true"
  101. :placeholder="'客户公司名称'"
  102. @searchChange="customerChange"
  103. />
  104. </el-col>
  105. <el-col :span="4" style="width: 150px; padding: 0 0 0 9px">
  106. <el-select
  107. :size="searchSize"
  108. v-model="parmValue.order_type"
  109. filterable
  110. clearable
  111. placeholder="商品来源"
  112. style="width: 100%"
  113. @change="
  114. pageInfo.curr = 1;
  115. parmValue.page = 1;
  116. searchList();
  117. "
  118. >
  119. <el-option
  120. v-for="item in xs_order_type_options"
  121. :key="'orderstatus' + item.id"
  122. :label="item.label"
  123. :value="item.id"
  124. />
  125. </el-select>
  126. </el-col>
  127. <el-col :span="6" style="width: 325px; padding: 0 0 0 10px">
  128. <el-input
  129. clearable
  130. placeholder="关键字"
  131. v-model="input"
  132. maxlength="40"
  133. :size="searchSize"
  134. @blur="searchList"
  135. class="input-with-select"
  136. >
  137. <el-select
  138. v-model="select"
  139. style="width: 100px"
  140. slot="prepend"
  141. placeholder="关键字类型"
  142. @change="searchList"
  143. >
  144. <el-option label="订单编号" value="orderCode"></el-option>
  145. <!-- <el-option
  146. label="商品属性编号"
  147. value="good_code"
  148. ></el-option> -->
  149. <!-- <el-option
  150. label="供应商编号"
  151. value="supplierNo"
  152. ></el-option> -->
  153. <!-- <el-option
  154. label="客户编号"
  155. value="customer_code"
  156. ></el-option> -->
  157. <el-option label="商品名称" value="good_name"></el-option>
  158. <el-option label="创建人" value="apply_name"></el-option>
  159. <el-option
  160. label="创建人部门"
  161. value="company_name"
  162. ></el-option>
  163. </el-select>
  164. </el-input>
  165. </el-col>
  166. <el-col :span="4" style="width: 66px; float: right">
  167. <el-button
  168. type="warning"
  169. class="fr"
  170. :size="searchSize"
  171. @click="restSearch"
  172. >
  173. 重置
  174. </el-button>
  175. </el-col>
  176. <el-col
  177. :span="3"
  178. style="width: 56px; float: right"
  179. v-if="powers.some((i) => i == '003') && !isSupertube"
  180. >
  181. <el-button
  182. :size="searchSize"
  183. type="success"
  184. style="float: right"
  185. @click="
  186. routeGoto('salesOrderDetail', { id: 'add', type: 'add' })
  187. "
  188. >
  189. 新建
  190. </el-button>
  191. </el-col>
  192. </el-row>
  193. </div>
  194. </template>
  195. <template #good_name="{ scope }">
  196. <span>{{ scope.row.good_name }}</span>
  197. <span v-for="(si, i) in scope.row.speclist" :key="si.spec_id + i">
  198. <span v-if="i !== 0">-</span>
  199. <span v-else>_</span>
  200. <span>{{ si.spec_name }}[{{ si.spec_value }}]</span>
  201. </span>
  202. </template>
  203. <template #status="{ scope }">
  204. <el-tag
  205. :size="tablebtnSize"
  206. :type="scope.row.status == '0' ? 'warning' : ''"
  207. v-text="
  208. (statusOptions.find((item) => item.id == scope.row.status) || {})
  209. .label || '--'
  210. "
  211. ></el-tag>
  212. </template>
  213. <template #order_type="{ scope }">
  214. <el-tag
  215. :size="tablebtnSize"
  216. v-text="
  217. (
  218. xs_order_type_options.find(
  219. (item) => item.id == scope.row.order_type
  220. ) || {}
  221. ).label || '--'
  222. "
  223. ></el-tag>
  224. </template>
  225. <template #order_source="{ scope }">
  226. <el-tag
  227. :size="tablebtnSize"
  228. v-text="
  229. (
  230. xs_order_source_options.find(
  231. (item) => item.id == scope.row.order_source
  232. ) || {}
  233. ).label || '--'
  234. "
  235. ></el-tag>
  236. </template>
  237. <template #operation="{ scope }">
  238. <el-tooltip effect="dark" content="详情" placement="top">
  239. <i
  240. class="el-icon-view tb-icon"
  241. @click="getRouter('salesOrderDetail', scope.row.id)"
  242. ></i>
  243. </el-tooltip>
  244. </template>
  245. </ex-table>
  246. <add-edit
  247. :id="modelId"
  248. :sitem="sitem"
  249. :show-model="showModel"
  250. :is-detail="isDetail"
  251. @refresh="searchList"
  252. @cancel="showModel = false"
  253. />
  254. <!--订单用途设置-->
  255. <user-add-edit
  256. :code="orderCodeList"
  257. :show-model="userShowModel"
  258. @refresh="searchList"
  259. @cancel="userShowModel = false"
  260. />
  261. </div>
  262. <div v-else>
  263. <no-auth></no-auth>
  264. </div>
  265. </div>
  266. </template>
  267. <script>
  268. import mixinPage from "@/mixins/elPaginationHandle";
  269. import resToken from "@/mixins/resToken";
  270. import asyncRequest from "@/apis/service/sellOut/salesOrder";
  271. import columns from "./columns"; //表格列参数
  272. import addEdit from "./components/addEdit";
  273. import userAddEdit from "./userAddEdit";
  274. import { mapGetters } from "vuex";
  275. import {
  276. xs_order_type_options,
  277. xs_order_source_options,
  278. } from "@/assets/js/statusList";
  279. export default {
  280. name: "salesOrder",
  281. mixins: [mixinPage, resToken],
  282. components: {
  283. addEdit,
  284. userAddEdit,
  285. },
  286. computed: {
  287. ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
  288. powers() {
  289. const tran =
  290. this.$store.getters.btnList.find(
  291. (item) => item.menu_route == "supplierSalesOrder"
  292. ) || {};
  293. const { action } = tran ?? {};
  294. return action ?? [];
  295. },
  296. },
  297. data() {
  298. return {
  299. sitem: null,
  300. select: "orderCode",
  301. input: "",
  302. customerCode: [],
  303. // 状态
  304. statusOptions: [
  305. { id: "0", label: "待发货" },
  306. { id: "1", label: "待发货完成" },
  307. { id: "2", label: "发货已完成" },
  308. { id: "3", label: "订单已取消" },
  309. ],
  310. xs_order_type_options,
  311. xs_order_source_options,
  312. loading: false,
  313. showModel: false,
  314. isDetail: false,
  315. modelId: 0,
  316. parmValue: {
  317. order_type: "", //订单类型
  318. orderCode: "", //销售订单code
  319. apply_name: "", // 申请人
  320. good_name: "", // 产品名称
  321. good_code: "", // 产品属性编号
  322. status: "", //状态
  323. page: 1, // 页码
  324. size: 15, // 每页显示条数
  325. supplierNo: "", //供应商编号
  326. customer_code: "", //客户编号
  327. start: "", //新建起始时间
  328. end: "", // 新建结束时间
  329. company_name: "", //创建人部门
  330. },
  331. // 表格 - 数据
  332. tableData: [],
  333. // 表格 - 参数
  334. table: {
  335. stripe: true,
  336. border: true,
  337. _defaultHeader_: ["setcol"],
  338. },
  339. // 表格 - 分页
  340. pageInfo: {
  341. size: 15,
  342. curr: 1,
  343. total: 0,
  344. },
  345. // 表格 - 列参数
  346. columns: columns,
  347. orderCodeList: [],
  348. userShowModel: false,
  349. };
  350. },
  351. mounted() {
  352. const { back } = this.$route.query;
  353. if (back) {
  354. this.parmValue = JSON.parse(back);
  355. console.log(this.parmValue);
  356. const { page, size } = this.parmValue;
  357. // this.parmValue.start = start || last_start;
  358. // this.parmValue.end = end || last_end;
  359. if (this.parmValue.customer_code.length > 0) {
  360. this.customerCode = [this.parmValue.customer_code];
  361. }
  362. this.pageInfo = {
  363. size: size,
  364. curr: page,
  365. total: 0,
  366. };
  367. //多选条件
  368. this.select = this.parmValue.select;
  369. // this.sselect = this.parmValue.sselect;
  370. this.input = this.parmValue.input;
  371. } else {
  372. this.select = "orderCode";
  373. // this.sselect = "创建时间"
  374. }
  375. this.searchList();
  376. },
  377. methods: {
  378. getRouter(toRouter, queryId) {
  379. if (toRouter && queryId) {
  380. let model = {
  381. id: queryId,
  382. type: "view",
  383. };
  384. //有多选框的条件
  385. this.parmValue.select = this.select;
  386. // this.parmValue.sselect = this.sselect ;
  387. this.parmValue.input = this.input;
  388. //
  389. let routerModel = {
  390. options: JSON.parse(JSON.stringify(this.parmValue)),
  391. router: this.$route.path,
  392. };
  393. model.preModel = JSON.stringify(routerModel);
  394. this.routeGoto(toRouter, model);
  395. } else {
  396. this.$message.warning("暂未找到相关流程!");
  397. }
  398. },
  399. restSearch() {
  400. this.select = "orderCode";
  401. this.input = "";
  402. this.customerCode = [];
  403. this.parmValue = {
  404. order_type: "",
  405. orderCode: "", //销售订单code
  406. apply_name: "", // 申请人
  407. good_name: "", // 产品名称
  408. good_code: "", // 产品属性编号
  409. status: "", //状态
  410. page: 1, // 页码
  411. size: 15, // 每页显示条数
  412. supplierNo: "", //供应商编号
  413. customer_code: "", //客户编号
  414. start: "", //新建起始时间
  415. end: "", // 新建结束时间
  416. company_name: "", //部门
  417. };
  418. // 表格 - 分页
  419. this.pageInfo = {
  420. size: 15,
  421. curr: 1,
  422. total: 0,
  423. };
  424. this.searchList();
  425. },
  426. openModal(id, isDetail, sitem) {
  427. this.modelId = id;
  428. this.isDetail = isDetail;
  429. this.sitem = sitem;
  430. this.showModel = true;
  431. },
  432. async supplierChange(e) {
  433. const { id, code, label } = e;
  434. this.parmValue.supplierNo = code || "";
  435. this.parmValue.page = 1;
  436. this.pageInfo.curr = 1;
  437. await this.searchList();
  438. },
  439. set_user(selection) {
  440. if (selection.length === 0) {
  441. this.$message.warning("至少选择一个订单!");
  442. return;
  443. }
  444. this.orderCodeList = [];
  445. let isok = true;
  446. selection.forEach((e) => {
  447. this.orderCodeList.push(e.orderCode);
  448. if (e.use_order) {
  449. isok = false;
  450. }
  451. });
  452. if (!isok) {
  453. this.$message.warning("只能选择未绑定的订单!");
  454. return;
  455. }
  456. this.userShowModel = true;
  457. },
  458. // 客户选择
  459. async customerChange(e) {
  460. if (e && e.id) {
  461. this.customerCode = [e.code];
  462. this.parmValue.supplierName = e.label;
  463. this.parmValue.customer_code = e.code;
  464. } else {
  465. this.customerCode = [];
  466. this.parmValue.supplierName = "";
  467. this.parmValue.customer_code = "";
  468. }
  469. this.parmValue.page = 1;
  470. this.pageInfo.curr = 1;
  471. await this.searchList();
  472. },
  473. async stockChange(e) {
  474. if (e && e.id) {
  475. this.parmValue.stockNo = [e.code];
  476. } else {
  477. this.parmValue.stockNo = [];
  478. }
  479. this.parmValue.page = 1;
  480. this.pageInfo.curr = 1;
  481. await this.searchList();
  482. },
  483. async searchList() {
  484. if (
  485. (this.parmValue.start !== "" && this.parmValue.end === "") ||
  486. (this.parmValue.start === "" && this.parmValue.end !== "")
  487. ) {
  488. this.$message.warning("时间区间不完整!");
  489. return;
  490. }
  491. this.loading = true;
  492. this.parmValue.orderCode = this.select === "orderCode" ? this.input : "";
  493. this.parmValue.good_name = this.select === "good_name" ? this.input : "";
  494. this.parmValue.apply_name =
  495. this.select === "apply_name" ? this.input : "";
  496. this.parmValue.company_name =
  497. this.select === "company_name" ? this.input : "";
  498. const res = await asyncRequest.list(this.parmValue);
  499. if (res && res.code === 0 && res.data) {
  500. this.tableData = res.data.list;
  501. this.tableData.forEach((v) => {
  502. v.good_class = "";
  503. if (v.can && v.can.length > 0) {
  504. v.can.forEach((x, i) => {
  505. v.good_class += i === 0 ? x.name : "_" + x.name;
  506. });
  507. }
  508. });
  509. this.pageInfo.total = Number(res.data.count);
  510. } else if (res && res.code >= 100 && res.code <= 104) {
  511. await this.logout();
  512. } else {
  513. this.tableData = [];
  514. this.pageInfo.total = 0;
  515. }
  516. this.loading = false;
  517. },
  518. // 时间
  519. async handleTime(e) {
  520. if (e.startTime !== "") {
  521. this.parmValue.start = e.startTime;
  522. } else {
  523. this.parmValue.start = "";
  524. }
  525. if (e.endTime !== "") {
  526. this.parmValue.end = e.endTime;
  527. } else {
  528. this.parmValue.end = "";
  529. }
  530. },
  531. },
  532. };
  533. </script>
  534. <style lang="scss" scoped>
  535. .salesOrder {
  536. // text-align: right;
  537. }
  538. </style>