index.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
  1. <template>
  2. <div class="pagePadding" style="background:#f7f7f7">
  3. <div
  4. class="box"
  5. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  6. >
  7. <el-form
  8. :model="ruleForm"
  9. :rules="rules"
  10. ref="ruleForm"
  11. label-width="100px"
  12. class="demo-ruleForm"
  13. >
  14. <el-form-item
  15. label="采购单编号: "
  16. prop="name"
  17. style="width: 500px"
  18. class="title"
  19. >
  20. <el-input
  21. v-model="ruleForm.name"
  22. readonly="true"
  23. placeholder="请选择"
  24. @click.native="centerDialogVisible = true"
  25. ></el-input>
  26. </el-form-item>
  27. <div class="con" v-if="sitem">
  28. <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
  29. <el-collapse-item title="采购单信息" name="1">
  30. <show-data-table
  31. :newTime="newTime"
  32. v-if="newTime !== ''"
  33. :sitem="sitem"
  34. :columns="ShowDataTableColumns"
  35. >
  36. <template slot="supplier_name">
  37. <span>{{ sitem.supplier_name }}</span>
  38. <el-popover placement="top" width="300" trigger="hover">
  39. <ul>
  40. <li>
  41. <span>销售方公司编号:</span
  42. ><span>{{ sitem.supplierNo }}</span>
  43. </li>
  44. </ul>
  45. <i class="el-icon-warning-outline fr" slot="reference"></i>
  46. </el-popover>
  47. </template>
  48. <template slot="company">
  49. <span>{{ sitem.company }}</span>
  50. <el-popover placement="top" width="300" trigger="hover">
  51. <ul>
  52. <li>
  53. <span>购买方公司编号:</span
  54. ><span>{{ sitem.companyNo }}</span>
  55. </li>
  56. </ul>
  57. <i class="el-icon-warning-outline fr" slot="reference"></i>
  58. </el-popover>
  59. </template>
  60. <template slot="status">
  61. <el-tag
  62. :size="'mini'"
  63. :type="sitem.status == '0' ? 'warning' : ''"
  64. v-text="
  65. (
  66. statusOptions.find(
  67. (item) => item.value == sitem.status
  68. ) || {}
  69. ).label || '--'
  70. "
  71. ></el-tag>
  72. <el-tooltip
  73. class="fr"
  74. v-if="
  75. powers.some((item) => item == '007') &&
  76. sitem.status === '0'
  77. "
  78. effect="dark"
  79. content="已于供应商确认"
  80. placement="top"
  81. >
  82. <i
  83. class="el-icon-video-play tb-icon"
  84. @click="statusConfirm()"
  85. ></i>
  86. </el-tooltip>
  87. </template>
  88. <template slot="order_type">
  89. <el-tag
  90. :size="'mini'"
  91. v-text="
  92. (
  93. order_type_options.find(
  94. (item) => item.value == sitem.order_type
  95. ) || {}
  96. ).label || '--'
  97. "
  98. ></el-tag>
  99. <el-popover
  100. placement="top"
  101. width="300"
  102. v-if="sitem.order_type === '1'"
  103. trigger="hover"
  104. >
  105. <ul>
  106. <li>
  107. <span>备库单编号:</span><span>{{ sitem.bkcode }}</span>
  108. </li>
  109. </ul>
  110. <i class="el-icon-warning-outline fr" slot="reference"></i>
  111. </el-popover>
  112. </template>
  113. <template slot="wsm">
  114. <span>{{ sitem.wsm_supplier }}/{{ sitem.wsm_name }}</span>
  115. <el-popover placement="top" width="300" trigger="hover">
  116. <ul>
  117. <li>
  118. <span>仓库公司编号:</span
  119. ><span>{{ sitem.wsm_supplierNo }}</span>
  120. </li>
  121. <li>
  122. <span>仓库名称编号:</span
  123. ><span>{{ sitem.wsm_code }}</span>
  124. </li>
  125. </ul>
  126. <i class="el-icon-warning-outline fr" slot="reference"></i>
  127. </el-popover>
  128. </template>
  129. <template slot="gold_price">
  130. <div
  131. v-if="
  132. sitem.status == '0' &&
  133. sitem.can[0].id == '6' &&
  134. cost_detailArr.is_gold_price == '1'
  135. "
  136. >
  137. {{ sitem.gold_price }}
  138. </div>
  139. <div v-else>----</div>
  140. </template>
  141. </show-data-table>
  142. </el-collapse-item>
  143. <!-- <el-collapse-item title="商品信息" name="2">
  144. <show-goods-data-table
  145. :newTime="newTime"
  146. v-if="newTime !== ''"
  147. :type="sitem.order_type"
  148. :skucode="sitem.skuCode"
  149. :spucode="sitem.spuCode"
  150. :iscgd="true"
  151. />
  152. <editPrice
  153. :newTime="newTime"
  154. v-if="
  155. newTime !== '' &&
  156. sitem.status == '0' &&
  157. sitem.can[0].id == '6' &&
  158. cost_detailArr.is_gold_price == '1'
  159. "
  160. :sitem="sitem"
  161. :cost_detailArr="cost_detailArr"
  162. @refresh="refresh"
  163. >
  164. </editPrice>
  165. </el-collapse-item>
  166. <el-collapse-item
  167. title="入库单"
  168. name="3"
  169. v-if="sitem && sitem.status !== '0'"
  170. >
  171. <order-in-table
  172. :newTime="newTime"
  173. v-if="newTime !== ''"
  174. :sitem="sitem"
  175. :id="queryId"
  176. @refresh="initData()"
  177. />
  178. </el-collapse-item>
  179. <el-collapse-item
  180. title="工差单"
  181. name="4"
  182. v-if="
  183. sitem &&
  184. sitem.order_type !== '1' &&
  185. sitem.status !== '0' &&
  186. sitem.purcheasediff
  187. "
  188. >
  189. <work-diff-table
  190. :newTime="newTime"
  191. v-if="newTime !== ''"
  192. :sitem="sitem"
  193. />
  194. </el-collapse-item> -->
  195. </el-collapse>
  196. </div>
  197. </el-form>
  198. <el-dialog
  199. title="采购单详情"
  200. :visible.sync="centerDialogVisible"
  201. width="1040px"
  202. top="2.5vh"
  203. center
  204. >
  205. <ex-table
  206. v-loading="loading"
  207. :table="table"
  208. :data="tableData"
  209. :columns="columns"
  210. :page="pageInfo"
  211. :size="size"
  212. @page-curr-change="handlePageChange"
  213. @page-size-change="handleSizeChange"
  214. @screen-reset="
  215. pageInfo.curr = 1;
  216. parmValue.page = 1;
  217. searchList();
  218. "
  219. @screen-submit="
  220. pageInfo.curr = 1;
  221. parmValue.page = 1;
  222. searchList();
  223. "
  224. @selection="selection_change"
  225. >
  226. <template #table-header="{}">
  227. <div style="width: 100%">
  228. <el-row style="padding: 0 0 0 80px">
  229. <el-col :span="4" style="width: 150px">
  230. <el-select
  231. :size="searchSize"
  232. v-model="parmValue.status"
  233. filterable
  234. clearable
  235. disabled
  236. placeholder="采购单状态"
  237. style="width: 100%"
  238. @change="
  239. pageInfo.curr = 1;
  240. parmValue.page = 1;
  241. searchList();
  242. "
  243. >
  244. <el-option
  245. v-for="item in statusOptions"
  246. :key="'status' + item.value"
  247. :label="item.label"
  248. :value="item.value"
  249. />
  250. </el-select>
  251. </el-col>
  252. <!-- <el-col :span="4" style="width: 310px; padding: 0 0 0 10px">
  253. <search-supplier
  254. :size="searchSize"
  255. :value="wsm_supplierNo"
  256. :placeholder="'入库公司名称'"
  257. :disabled="false"
  258. :names="supplierName"
  259. :isDetail="true"
  260. @searchChange="supplierChange"
  261. />
  262. </el-col>
  263. <el-col :span="4" style="width: 220px; padding: 0 0 0 10px">
  264. <search-stock
  265. :size="searchSize"
  266. :value="wsm_code"
  267. :placeholder="'入库仓库名称'"
  268. :disabled="false"
  269. :names="stockName"
  270. :isDetail="true"
  271. :isRelation="true"
  272. :companyCode="parmValue.wsm_supplierNo"
  273. @searchChange="stockChange"
  274. />
  275. </el-col> -->
  276. <el-col :span="4" style="width: 130px; padding: 0 0 0 10px">
  277. <el-dropdown
  278. @command="handleClick($event)"
  279. :size="searchSize"
  280. >
  281. <el-button :size="searchSize" style="width: 120px">
  282. {{ sselect }}
  283. <i
  284. class="el-icon-arrow-down el-icon--right"
  285. :size="searchSize"
  286. ></i>
  287. </el-button>
  288. <el-dropdown-menu slot="dropdown">
  289. <el-dropdown-item
  290. v-for="item in options"
  291. :key="item"
  292. :command="item"
  293. >{{ item }}</el-dropdown-item
  294. >
  295. </el-dropdown-menu>
  296. </el-dropdown>
  297. </el-col>
  298. <el-col :span="4" style="width: 303px; padding: 0 0 0 10px">
  299. <period-date-picker
  300. :type="1"
  301. :width="'135px'"
  302. :size="searchSize"
  303. :start="timeOBJ.start"
  304. :end="timeOBJ.end"
  305. @timeReturned="handleTime"
  306. />
  307. </el-col>
  308. <el-col :span="3" style="width: 66px; float: right">
  309. <el-button
  310. :size="searchSize"
  311. type="primary"
  312. style="float: right; margin-left: 5px"
  313. @click="searchList"
  314. >
  315. 刷新
  316. </el-button>
  317. </el-col>
  318. </el-row>
  319. <el-row style="padding: 10px 0 0 0">
  320. <el-col :span="6" style="width: 500px; padding: 0 0 0 0px">
  321. <el-input
  322. clearable
  323. placeholder="关键字"
  324. v-model="input"
  325. maxlength="40"
  326. :size="searchSize"
  327. class="input-with-select"
  328. @blur="
  329. pageInfo.curr = 1;
  330. parmValue.page = 1;
  331. searchList();
  332. "
  333. >
  334. <el-select
  335. v-model="select"
  336. style="width: 125px"
  337. slot="prepend"
  338. placeholder="关键字类型"
  339. @change="
  340. pageInfo.curr = 1;
  341. parmValue.page = 1;
  342. searchList();
  343. "
  344. >
  345. <el-option label="采购单编号" value="1"></el-option>
  346. <!-- <el-option label="入库单编号" value="2"></el-option> -->
  347. <!-- 列表未渲染备库编号,注释 -->
  348. <!-- <el-option label="备库编号" value="3"></el-option> -->
  349. <el-option label="商品成本编号" value="4"></el-option>
  350. <el-option label="商品名称" value="5"></el-option>
  351. <el-option label="采购员" value="6"></el-option>
  352. <el-option label="采购供应商编号" value="7"></el-option>
  353. </el-select>
  354. </el-input>
  355. </el-col>
  356. <el-col :span="4" style="width: 66px; float: right">
  357. <el-button
  358. type="warning"
  359. class="fr"
  360. :size="searchSize"
  361. @click="restSearch"
  362. >
  363. 重置
  364. </el-button>
  365. </el-col>
  366. <!-- 暂时注释,下版需要导出 -->
  367. <el-col
  368. :span="4"
  369. style="width: 66px; float: right"
  370. v-if="
  371. powers &&
  372. powers.length > 0 &&
  373. powers.some((item) => item == '087')
  374. "
  375. >
  376. <el-button
  377. type="primary"
  378. style="margin-left: 30px"
  379. @click="submit"
  380. :size="searchSize"
  381. class="fr"
  382. >
  383. 提交
  384. </el-button>
  385. </el-col>
  386. </el-row>
  387. </div>
  388. </template>
  389. <template #good_name="{ scope }">
  390. <span>{{ scope.row.good_name }}</span>
  391. <span v-for="(si, i) in scope.row.speclist" :key="si.spec_id + i">
  392. {{ i === 0 ? "__" : "--" }}{{ si.spec_name }}[{{ si.spec_value }}]
  393. </span>
  394. </template>
  395. <template #status="{ scope }">
  396. <el-tag
  397. :size="tablebtnSize"
  398. v-text="
  399. (
  400. statusOptions.find(
  401. (item) => item.value == scope.row.status
  402. ) || {}
  403. ).label || '--'
  404. "
  405. ></el-tag>
  406. </template>
  407. <template #order_type="{ scope }">
  408. <el-tag
  409. :size="tablebtnSize"
  410. v-text="
  411. (
  412. order_type_options.find(
  413. (item) => item.value == scope.row.order_type
  414. ) || {}
  415. ).label || '--'
  416. "
  417. ></el-tag>
  418. </template>
  419. <template #operation="{ scope }">
  420. <el-tooltip
  421. v-if="powers.some((item) => item == '007')"
  422. effect="dark"
  423. content="详情"
  424. placement="top"
  425. >
  426. <i
  427. class="el-icon-view tb-icon"
  428. @click="getRouter('purchaseOrderDetail', scope.row.cgdNo)"
  429. ></i>
  430. </el-tooltip>
  431. </template>
  432. </ex-table>
  433. </el-dialog>
  434. </div>
  435. <div v-else>
  436. <no-auth></no-auth>
  437. </div>
  438. </div>
  439. </template>
  440. <script>
  441. //http
  442. import asyncRequest from "@/apis/service/dataCorrection/cgMessage";
  443. import mixinPage from "@/mixins/elPaginationHandle";
  444. import resToken from "@/mixins/resToken";
  445. import urlConfig from "@/apis/url-config";
  446. import { columns, order_type_options, statusOptions } from "./columns";
  447. import { mapGetters } from "vuex";
  448. import orderInTable from "./components/order-in-table";
  449. import workDiffTable from "./components/work-diff-table";
  450. import ShowDataTableColumns from "./components/ShowDataTableColumns";
  451. import tolerance from "./components/tolerance";
  452. import editPrice from "./components/editPrice";
  453. export default {
  454. mixins: [mixinPage, resToken],
  455. components: {
  456. orderInTable,
  457. tolerance,
  458. workDiffTable,
  459. editPrice,
  460. },
  461. computed: {
  462. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  463. powers() {
  464. let tran =
  465. this.$store.getters.btnList.find(
  466. (item) => item.menu_route == "purchaseOrder"
  467. ) || {};
  468. if (tran && tran.action && tran.action.length > 0) {
  469. return tran.action;
  470. } else {
  471. return [];
  472. }
  473. },
  474. },
  475. data() {
  476. var validate = (rule, value, callback) => {
  477. if (value === "") {
  478. callback(new Error("请选择采购单"));
  479. } else {
  480. if (this.ruleForm.checkPass !== "") {
  481. this.$refs.ruleForm.validateField("checkPass");
  482. }
  483. callback();
  484. }
  485. };
  486. return {
  487. //弹窗显隐
  488. centerDialogVisible: false,
  489. ruleForm: {
  490. name: "",
  491. },
  492. rules: {
  493. name: [{ validator: validate, required: true, trigger: "blur" }],
  494. },
  495. //入库公司
  496. supplierName: "",
  497. //入库仓库
  498. stockName: "",
  499. changeList: [],
  500. fileUrl: urlConfig.baseURL,
  501. activeNames: ["0", "1", "2", "3", "4", "5", "10"],
  502. sitem: null,
  503. select: "1",
  504. input: "",
  505. timeOBJ: {
  506. start: "", //起始时间
  507. end: "", // 结束时间
  508. },
  509. options: ["创建时间", "最晚入库时间"],
  510. sselect: "创建时间",
  511. // 状态
  512. statusOptions: statusOptions,
  513. ShowDataTableColumns: ShowDataTableColumns,
  514. order_type_options: order_type_options,
  515. cost_detailArr: [],
  516. loading: false,
  517. showModel: false,
  518. isDetail: false,
  519. modelId: 0,
  520. wsm_code: [],
  521. wsm_supplierNo: [],
  522. parmValue: {
  523. bk_code: "", // 备库编码
  524. wsm_in_code: "", // 入库单号
  525. cgdNo: "", // 采购单编码
  526. apply_name: "", // 申请人
  527. good_name: "", // 产品名称
  528. good_code: "", // 产品属性编号
  529. status: "0", //状态
  530. wsm_code: "", //入货仓库编码
  531. start: "", //新建起始时间
  532. end: "", // 新建结束时间
  533. last_start: "", //最后入库时间开始
  534. last_end: "", //最后入库时间结束
  535. page: 1, // 页码
  536. size: 15, // 每页显示条数
  537. supplierNo: "",
  538. wsm_supplierNo: "",
  539. },
  540. tableData: [],
  541. passwordModel: false,
  542. passwordModelId: 0,
  543. isPasswordDetail: false,
  544. // 表格 - 数据
  545. tableData: [],
  546. // 表格 - 参数
  547. table: {
  548. stripe: true,
  549. border: true,
  550. _defaultHeader_: ["setcol"],
  551. },
  552. // 表格 - 分页
  553. pageInfo: {
  554. size: 15,
  555. curr: 1,
  556. total: 0,
  557. },
  558. // 表格 - 列参数
  559. columns: columns,
  560. };
  561. },
  562. mounted() {
  563. this.searchList();
  564. },
  565. methods: {
  566. getRouter(toRouter, queryId) {
  567. if (toRouter && queryId) {
  568. let model = {
  569. id: queryId,
  570. };
  571. //有多选框的条件
  572. this.parmValue.select = this.select;
  573. this.parmValue.sselect = this.sselect;
  574. this.parmValue.input = this.input;
  575. //
  576. let routerModel = {
  577. options: JSON.parse(JSON.stringify(this.parmValue)),
  578. router: this.$route.path,
  579. };
  580. model.preModel = JSON.stringify(routerModel);
  581. this.routeGoto(toRouter, model);
  582. } else {
  583. this.$message.warning("暂未找到相关流程!");
  584. }
  585. },
  586. //选中触发函数
  587. selection_change(e) {
  588. const { list } = e;
  589. //选中的数组集合
  590. this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
  591. },
  592. //提交
  593. async submit() {
  594. if (this.changeList.length <= 0) {
  595. this.$message.warning("请选择有效数据");
  596. return;
  597. }
  598. if (this.changeList.length != 1) {
  599. this.$message.warning("只能同时提交一条选中数据");
  600. return;
  601. }
  602. let model = this.changeList[0];
  603. //提交成功,接口返回数据时,将选中的一行中的采购单编号赋值给页面上的input
  604. this.ruleForm.name = model.cgdNo;
  605. //处理成功后,关闭弹窗,渲染页面层数据
  606. this.centerDialogVisible = false;
  607. this.sitem = model;
  608. },
  609. async statusConfirm() {
  610. if (this.changeList.length <= 0) {
  611. this.$message.warning("至少选择一条采购单数据!");
  612. return;
  613. }
  614. let isok = true,
  615. list = [];
  616. this.changeList.forEach((e) => {
  617. if (e.status !== "0") {
  618. isok = false;
  619. }
  620. list.push(e.cgdNo);
  621. });
  622. if (!isok) {
  623. this.$message.warning("只能选择待与供应商确认的采购单!");
  624. return;
  625. }
  626. await this.$confirm(`确定批量确认?`, {
  627. confirmButtonText: "确定",
  628. cancelButtonText: "取消",
  629. type: "warning",
  630. })
  631. .then(async () => {
  632. let model = {
  633. cgdNo: list,
  634. status: "0",
  635. };
  636. const res = await asyncRequest.status(model);
  637. this.loading = false;
  638. if (res && res.code === 0) {
  639. this.$notify.success({
  640. title: "提交成功!",
  641. message: "",
  642. });
  643. await this.searchList();
  644. } else if (res && res.code >= 100 && res.code <= 104) {
  645. await this.logout();
  646. } else {
  647. this.$message.warning(res.message);
  648. }
  649. })
  650. .catch(() => {
  651. console.log("取消");
  652. });
  653. },
  654. restSearch() {
  655. this.sselect = "创建时间";
  656. this.select = "1";
  657. this.input = "";
  658. this.wsm_code = [];
  659. this.wsm_supplierNo = [];
  660. this.timeOBJ = {
  661. start: "", //起始时间
  662. end: "", // 结束时间
  663. };
  664. this.parmValue = {
  665. bk_code: "", // 备库编码
  666. wsm_in_code: "", // 入库单号
  667. cgdNo: "", // 采购单编码
  668. apply_name: "", // 申请人
  669. good_name: "", // 产品名称
  670. good_code: "", // 产品属性编号
  671. status: "0", //状态
  672. wsm_code: "", //入货仓库编码
  673. start: "", //新建起始时间
  674. end: "", // 新建结束时间
  675. last_start: "", //最后入库时间开始
  676. last_end: "", //最后入库时间结束
  677. page: 1, // 页码
  678. size: 15, // 每页显示条数
  679. };
  680. // 表格 - 分页
  681. this.pageInfo = {
  682. size: 15,
  683. curr: 1,
  684. total: 0,
  685. };
  686. this.searchList();
  687. },
  688. async handleClick(e) {
  689. this.sselect = e;
  690. this.parmValue.start = e === "创建时间" ? this.timeOBJ.start : "";
  691. this.parmValue.end = e === "创建时间" ? this.timeOBJ.end : "";
  692. this.parmValue.last_start = e !== "创建时间" ? this.timeOBJ.start : "";
  693. this.parmValue.last_end = e !== "创建时间" ? this.timeOBJ.end : "";
  694. if (
  695. !(
  696. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  697. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  698. )
  699. ) {
  700. this.parmValue.page = 1;
  701. this.pageInfo.curr = 1;
  702. await this.searchList();
  703. }
  704. },
  705. async supplierChange(e) {
  706. if (e && e.id) {
  707. //入库公司
  708. // localStorage.setItem("wsm_supplierNo",e.label)
  709. // this.supplierName = localStorage.getItem("rkNm")
  710. this.parmValue.wsm_supplierNo = e.code;
  711. this.wsm_supplierNo = [e.code];
  712. } else {
  713. //入库公司
  714. // localStorage.setItem("wsm_supplierNo","")
  715. this.parmValue.wsm_supplierNo = "";
  716. this.wsm_supplierNo = [];
  717. }
  718. this.parmValue.wsm_code = "";
  719. this.wsm_code = [];
  720. this.parmValue.page = 1;
  721. this.pageInfo.curr = 1;
  722. await this.searchList();
  723. },
  724. async stockChange(e) {
  725. if (e && e.id) {
  726. //入库仓库
  727. // localStorage.setItem("wsm_code",e.label)
  728. this.parmValue.wsm_code = e.code;
  729. this.wsm_code = [e.code];
  730. } else {
  731. //入库仓库
  732. // localStorage.setItem("wsm_code","")
  733. this.parmValue.wsm_code = "";
  734. this.wsm_code = [];
  735. }
  736. this.parmValue.page = 1;
  737. this.pageInfo.curr = 1;
  738. await this.searchList();
  739. },
  740. async searchList() {
  741. if (
  742. (this.timeOBJ.start !== "" && this.timeOBJ.end === "") ||
  743. (this.timeOBJ.start === "" && this.timeOBJ.end !== "")
  744. ) {
  745. this.$message.warning("时间区间不完整!");
  746. return;
  747. }
  748. this.loading = true;
  749. this.parmValue.cgdNo = this.select === "1" ? this.input : ""; // 采购单编码
  750. this.parmValue.wsm_in_code = this.select === "2" ? this.input : ""; // 入库单号
  751. this.parmValue.bk_code = this.select === "3" ? this.input : ""; // 备库编码
  752. this.parmValue.good_code = this.select === "4" ? this.input : ""; // 产品属性编号
  753. this.parmValue.good_name = this.select === "5" ? this.input : ""; // 产品名称
  754. this.parmValue.apply_name = this.select === "6" ? this.input : ""; // 申请人
  755. this.parmValue.supplierNo = this.select === "7" ? this.input : ""; // 采购供应商编号
  756. // this.wsm_supplierNo = [];
  757. const res = await asyncRequest.list(this.parmValue);
  758. if (res && res.code === 0 && res.data) {
  759. this.tableData = res.data.list;
  760. this.pageInfo.total = Number(res.data.count);
  761. } else if (res && res.code >= 100 && res.code <= 104) {
  762. await this.logout();
  763. } else {
  764. this.tableData = [];
  765. this.pageInfo.total = 0;
  766. }
  767. this.loading = false;
  768. },
  769. // 时间
  770. async handleTime(e) {
  771. if (e.startTime !== "") {
  772. this.timeOBJ.start = e.startTime;
  773. } else {
  774. this.timeOBJ.start = "";
  775. }
  776. if (e.endTime !== "") {
  777. this.timeOBJ.end = e.endTime;
  778. } else {
  779. this.timeOBJ.end = "";
  780. }
  781. await this.handleClick(this.sselect);
  782. },
  783. },
  784. };
  785. </script>
  786. <style lang="scss" scoped>
  787. /deep/ .title {
  788. width: 500px;
  789. display: block;
  790. margin-top: 40px;
  791. }
  792. /deep/ .demo-ruleForm{
  793. width: 80%;
  794. min-width: 800px;
  795. padding-left: 100px;
  796. box-sizing: border-box;
  797. }
  798. .con{
  799. width: 100%;
  800. height: 60vh;
  801. background: #fff;
  802. // margin-bottom: 40px;
  803. }
  804. </style>