addForm.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. <template>
  2. <el-row class="addForm">
  3. <el-col :span="24">
  4. <el-form
  5. :model="ruleForm"
  6. status-icon
  7. :rules="rulesThis"
  8. ref="ruleForm"
  9. :size="'mini'"
  10. label-width="85px"
  11. class="demo-ruleForm"
  12. >
  13. <el-row>
  14. <el-col :span="24">
  15. <!-- <div class="label-title-model">出库仓库信息:</div> -->
  16. <!-- !(
  17. id === 'add' ||
  18. (status + '' === '0' && powers.some((i) => i == '005'))
  19. ) -->
  20. <el-form-item label="业务公司" prop="out_companyNo">
  21. <search-work-company
  22. :value="ruleForm.out_companyNo"
  23. :size="'mini'"
  24. :disabled="true"
  25. :is-detail="id !== 'add'"
  26. :placeholder="'业务公司'"
  27. @searchChange="supplierChange($event, 'out_companyNo')"
  28. />
  29. </el-form-item>
  30. <!-- <el-form-item label="公司" prop="supplier_code">
  31. <search-supplier
  32. :value="ruleForm.supplier_code"
  33. :placeholder="'请选择公司'"
  34. :size="'mini'"
  35. :is-detail="id !== 'add'"
  36. :disabled="
  37. !(id === 'add' || (status + '' === '0' && powers.some((i) => i == '005')))
  38. "
  39. :names="supplier_name"
  40. @searchChange="selectSupplierOut"
  41. />
  42. </el-form-item> -->
  43. </el-col>
  44. <el-col :span="12">
  45. <el-form-item label="出库仓库" prop="stock_code">
  46. <search-stock
  47. :value="ruleForm.stock_code"
  48. :isDetail="id !== 'add'"
  49. :disabled="
  50. !(
  51. id === 'add' ||
  52. (status + '' === '0' && powers.some((i) => i == '005'))
  53. )
  54. "
  55. :size="'mini'"
  56. :placeholder="'请选择仓库'"
  57. :isRelation="true"
  58. :companyNo="ruleForm.out_companyNo"
  59. :names="''"
  60. @searchChange="selectStockOut"
  61. />
  62. </el-form-item>
  63. </el-col>
  64. <el-col :span="12">
  65. <!-- <div class="label-title-model">入库仓库信息:</div> -->
  66. <!-- :disabled="
  67. !(
  68. id === 'add' ||
  69. (status + '' === '0' && powers.some((i) => i == '005'))
  70. )
  71. " -->
  72. <!-- <el-form-item label="业务公司" prop="in_companyNo">
  73. <search-work-company
  74. :value="ruleForm.in_companyNo"
  75. :names="''"
  76. :size="'mini'"
  77. :is-detail="id !== 'add'"
  78. disabled
  79. :placeholder="'业务公司'"
  80. @searchChange="supplierChange($event, 'in_companyNo')"
  81. />
  82. </el-form-item> -->
  83. <!-- <el-form-item label="公司" prop="supplier_in_code">
  84. <search-supplier
  85. :value="ruleForm.supplier_in_code"
  86. :placeholder="'请选择公司'"
  87. :size="'mini'"
  88. :is-detail="id !== 'add'"
  89. :disabled="
  90. !(id === 'add' || (status + '' === '0' && powers.some((i) => i == '005')))
  91. "
  92. :names="supplier_in_name"
  93. @searchChange="selectSupplierIn"
  94. />
  95. </el-form-item> -->
  96. <el-form-item label="入库仓库" prop="stock_in_code">
  97. <search-stock
  98. :value="ruleForm.stock_in_code"
  99. :isDetail="id !== 'add'"
  100. :noRelation="true"
  101. :size="'mini'"
  102. :disabled="
  103. !(
  104. id === 'add' ||
  105. (status + '' === '0' && powers.some((i) => i == '005'))
  106. )
  107. "
  108. :placeholder="'请选择仓库'"
  109. :isRelation="true"
  110. :companyNo="ruleForm.in_companyNo"
  111. :names="''"
  112. @searchChange="selectStockIn"
  113. />
  114. </el-form-item>
  115. </el-col>
  116. </el-row>
  117. </el-form>
  118. </el-col>
  119. <el-col
  120. :span="24"
  121. v-if="
  122. !(
  123. (status == '3' && powers.some((i) => i == '022')) ||
  124. (status == '4' && powers.some((i) => i == '023'))
  125. )
  126. "
  127. >
  128. <el-form
  129. :model="tableForm"
  130. :rules="tableFormThis"
  131. ref="tableForm"
  132. :size="'mini'"
  133. class="demo-tableForm product_go"
  134. >
  135. <el-table :data="tableForm.product_go" border :size="'mini'" row-key="key">
  136. <template v-for="(item, index) in columns">
  137. <el-table-column
  138. :prop="item.prop"
  139. show-overflow-tooltip
  140. :label="item.label"
  141. v-if="item.type === 'text' && item.show && item.prop !== 'error_code'"
  142. :width="item.width"
  143. :min-width="item.minWidth"
  144. :key="item.prop + index"
  145. />
  146. <el-table-column
  147. :prop="item.prop"
  148. :label="item.label"
  149. v-else-if="item.type === 'text' && item.show && item.prop === 'error_code'"
  150. :width="item.width"
  151. :min-width="item.minWidth"
  152. :key="item.prop + index"
  153. >
  154. <template slot-scope="scope">
  155. <span class="spscope">{{ scope.row.error_msg }}</span>
  156. </template>
  157. </el-table-column>
  158. <el-table-column
  159. :prop="item.prop"
  160. :label="item.label"
  161. v-else-if="item.type !== 'text' && item.show"
  162. :width="item.width"
  163. :min-width="item.minWidth"
  164. :key="item.prop + index"
  165. >
  166. <template slot-scope="scope">
  167. <el-form-item
  168. :prop="'product_go.' + scope.$index + '.' + item.prop"
  169. :rules="scope.row.edit ? tableFormThis[item.prop] : {}"
  170. :size="'mini'"
  171. >
  172. <el-input
  173. v-if="scope.row.edit === true && item.type === 'input'"
  174. :size="'mini'"
  175. maxlength="250"
  176. clearable
  177. v-model="scope.row[item.prop]"
  178. />
  179. <el-select
  180. v-model="scope.row[item.prop]"
  181. v-if="scope.row.edit === true && item.type === 'select'"
  182. style="width: 100%"
  183. clearable
  184. placeholder="异常原因"
  185. @change="elSelectChange($event, scope.$index)"
  186. >
  187. <el-option
  188. v-for="item in options"
  189. :key="item.result_code"
  190. :label="item.result"
  191. :value="item.result_code"
  192. :disabled="item.status + '' === '0'"
  193. >
  194. </el-option>
  195. </el-select>
  196. <span v-if="!scope.row.edit" class="spscope">{{
  197. item.type === "select" ? scope.row.error_msg : scope.row[item.prop]
  198. }}</span>
  199. </el-form-item>
  200. </template>
  201. </el-table-column>
  202. </template>
  203. <el-table-column
  204. fixed="right"
  205. label="操作"
  206. width="80"
  207. v-if="id === 'add' || (status + '' === '0' && powers.some((i) => i == '005'))"
  208. >
  209. <template slot="header" slot-scope="scope">
  210. <span>操作</span>
  211. <el-tooltip
  212. style="margin: 3px 0 0 0"
  213. effect="dark"
  214. class="fr"
  215. content="添加"
  216. placement="top"
  217. >
  218. <i
  219. class="el-icon-circle-plus-outline tb-icon"
  220. style="color: #6954f0; magin: 0 0 0 10px"
  221. @click="openGoodsModel"
  222. ></i>
  223. </el-tooltip>
  224. </template>
  225. <template slot-scope="scope">
  226. <el-tooltip
  227. effect="dark"
  228. content="编辑"
  229. v-if="!scope.row.edit"
  230. placement="top"
  231. >
  232. <i class="el-icon-edit tb-icon" @click="editRow(scope.$index)"></i>
  233. </el-tooltip>
  234. <el-tooltip
  235. effect="dark"
  236. content="保存"
  237. v-if="scope.row.edit"
  238. placement="top"
  239. >
  240. <i
  241. class="el-icon-circle-check tb-icon"
  242. @click="checkRow(scope.$index)"
  243. ></i>
  244. </el-tooltip>
  245. <el-tooltip effect="dark" content="删除" placement="top">
  246. <i
  247. class="el-icon-delete tb-icon"
  248. @click="deleteRow(scope.$index, tableForm.product_go)"
  249. ></i>
  250. </el-tooltip>
  251. </template>
  252. </el-table-column>
  253. </el-table>
  254. </el-form>
  255. </el-col>
  256. <el-col :span="24" style="text-align: right; padding: 10px 0 10px 0">
  257. <el-button
  258. type="primary"
  259. :size="'mini'"
  260. @click="submitForm"
  261. v-if="id === 'add' || (status + '' === '0' && powers.some((i) => i == '005'))"
  262. >保 存
  263. </el-button>
  264. </el-col>
  265. <el-col :span="24">
  266. <search-stock-good-modal
  267. :show-model="showGoodsModel"
  268. :code="stock_code"
  269. @cancel="showGoodsModel = false"
  270. @searchChange="addGoodsRes"
  271. />
  272. </el-col>
  273. </el-row>
  274. </template>
  275. <script>
  276. import asyncRequest from "@/apis/service/stock/allot/detail";
  277. import searchStockGoodModal from "@/components/search-stock-allot-good-modal";
  278. import companyHelper from '@/mixins/companyHelper'
  279. import resToken from "@/mixins/resToken";
  280. import { isnumber } from "@/utils/validate";
  281. import config from "./columns"; //表格列参数
  282. export default {
  283. name: "allot",
  284. props: ["showModel", "id", "sitem", "newTime"],
  285. mixins: [resToken, companyHelper],
  286. components: { searchStockGoodModal },
  287. computed: {
  288. powers() {
  289. const tran =
  290. this.$store.getters.btnList.find((item) => item.menu_route == "allotDetail") ||
  291. {};
  292. const { action } = tran ?? {};
  293. return action ?? [];
  294. },
  295. },
  296. data() {
  297. return {
  298. showGoodsModel: false,
  299. status: "",
  300. supplier_code: "",
  301. supplier_name: "",
  302. supplier_in_code: "",
  303. supplier_in_name: "",
  304. stock_code: "",
  305. stock_in_code: "",
  306. loading: false,
  307. showModelThis: this.showModel,
  308. delList: [],
  309. ruleForm: {
  310. supplier_code: [], //出库供应商code
  311. stock_code: [], //出库仓库code
  312. supplier_in_code: [], //入库供应商code
  313. stock_in_code: [], //入库仓库code
  314. in_companyNo: "",
  315. out_companyNo: "",
  316. },
  317. tableForm: {
  318. product_go: [], //出库商品
  319. },
  320. rulesThis: this.rules,
  321. tableFormThis: config.tableFormThis,
  322. rules: {
  323. in_companyNo: [
  324. {
  325. required: true,
  326. message: "请选择入库方业务公司",
  327. trigger: "change",
  328. },
  329. ],
  330. out_companyNo: [
  331. {
  332. required: true,
  333. message: "请选择出库方业务公司",
  334. trigger: "change",
  335. },
  336. ],
  337. supplier_code: [
  338. {
  339. type: "array",
  340. required: true,
  341. message: "请选择供应商",
  342. trigger: "change",
  343. },
  344. ],
  345. stock_code: [
  346. {
  347. type: "array",
  348. required: true,
  349. message: "请选择仓库",
  350. trigger: "change",
  351. },
  352. ],
  353. // supplier_in_code: [
  354. // {
  355. // type: "array",
  356. // required: true,
  357. // message: "请选择供应商",
  358. // trigger: "change",
  359. // },
  360. // ],
  361. stock_in_code: [
  362. {
  363. type: "array",
  364. required: true,
  365. message: "请选择仓库",
  366. trigger: "change",
  367. },
  368. ],
  369. },
  370. columns: [],
  371. tableData: [],
  372. oldList: [],
  373. };
  374. },
  375. watch: {
  376. showModel: function (val) {
  377. this.showModelThis = val;
  378. if (val) {
  379. this.initForm();
  380. }
  381. },
  382. showModelThis(val) {
  383. if (!val) {
  384. this.$emit("cancel");
  385. }
  386. },
  387. newTime: function (val) {
  388. if (val) {
  389. this.initForm();
  390. }
  391. },
  392. },
  393. mounted() {
  394. this.initForm();
  395. },
  396. methods: {
  397. closeModel() {
  398. this.$emit("closeModel");
  399. },
  400. //业务公司选择
  401. async supplierChange(e, key) {
  402. const { code } = e;
  403. this.ruleForm[key] = code || ""; //业务公司编码
  404. this.$refs.ruleForm.validateField(key);
  405. },
  406. openGoodsModel() {
  407. if (this.ruleForm.stock_code.length === 0) {
  408. this.$message.warning("请选择出库仓库!");
  409. return;
  410. }
  411. let index = this.tableForm.product_go.findIndex((v) => v.edit);
  412. if (index !== -1) {
  413. this.$message.warning("当前已有商品正在编辑!");
  414. return;
  415. }
  416. this.showGoodsModel = true;
  417. },
  418. async initForm() {
  419. this.loading = true;
  420. if (this.id === "add") {
  421. this.status = "";
  422. }
  423. this.columns = [];
  424. this.rulesThis = this.rules;
  425. await this.resetForm();
  426. this.loading = false;
  427. },
  428. async resetForm() {
  429. // 重置
  430. await this.$nextTick(() => {
  431. if (this.$refs.ruleForm) {
  432. this.$refs.ruleForm.resetFields();
  433. this.$refs.ruleForm.clearValidate();
  434. const {
  435. wsm_in,
  436. wsm_out,
  437. wsm_in_name,
  438. wsm_out_name,
  439. status,
  440. out_code,
  441. in_code,
  442. in_companyNo,
  443. out_companyNo,
  444. } = this.sitem;
  445. this.status = status || "";
  446. this.supplier_code = out_code || "";
  447. this.supplier_name = wsm_out_name || "";
  448. // this.supplier_in_code = in_code || "";
  449. this.supplier_in_name = wsm_in_name || "";
  450. this.stock_code = wsm_out || "";
  451. this.stock_in_code = wsm_in || "";
  452. this.ruleForm = {
  453. in_companyNo: in_companyNo || "",
  454. out_companyNo: out_companyNo || "",
  455. supplier_code: out_code ? [out_code] : [], //出库供应商code
  456. stock_code: wsm_out ? [wsm_out] : [], //出库仓库code
  457. // supplier_in_code: in_code ? [in_code] : [], //入库供应商code
  458. stock_in_code: wsm_in ? [wsm_in] : [], //入库仓库code
  459. };
  460. if(this.id === 'add') {
  461. this.ruleForm.out_companyNo = this.currentCompany
  462. this.ruleForm.in_companyNo = this.currentCompany
  463. }
  464. // this.ruleForm .out_companyNo =
  465. }
  466. if (this.$refs.tableForm) {
  467. this.$refs.tableForm.resetFields();
  468. this.$refs.tableForm.clearValidate();
  469. const { item, status } = this.sitem;
  470. this.status = status || "";
  471. this.tableForm.product_go = [];
  472. this.delList = [];
  473. let list = JSON.parse(JSON.stringify(item || []));
  474. list.forEach((v) => {
  475. v.usable_num = v.usable_num;
  476. v.type_code = v.good_type_code;
  477. v.error_num = v.error_num || "0";
  478. v.error_code = v.error_code || "";
  479. v.error_msg = v.error_msg || "";
  480. v.error_remark = v.error_remark || "";
  481. v.stock_num = v.stock_num || "0";
  482. v.edit = false;
  483. v.spuCode = v.good_type_code;
  484. this.tableForm.product_go.push(v);
  485. });
  486. let columnsList = JSON.parse(JSON.stringify(config.columns));
  487. columnsList.forEach((v1) => {
  488. if (this.status == "5" || this.status == "4") {
  489. v1.show = true;
  490. }
  491. if (this.status == "4" && v1.prop === "stock_num") {
  492. v1.type = "input";
  493. v1.width = "150px";
  494. }
  495. if (this.status == "3") {
  496. if (v1.prop === "error_remark" || v1.prop === "error_num") {
  497. v1.show = true;
  498. v1.width = "150px";
  499. v1.type = "input";
  500. }
  501. if (v1.prop === "error_code") {
  502. v1.show = true;
  503. v1.width = "150px";
  504. v1.type = "select";
  505. }
  506. }
  507. if (this.status == "0" || this.status == "") {
  508. if (v1.prop === "allot_num") {
  509. v1.width = "150px";
  510. v1.type = "input";
  511. }
  512. }
  513. this.columns.push(v1);
  514. });
  515. this.oldList = list.length === 0 ? [] : JSON.parse(JSON.stringify(list));
  516. }
  517. });
  518. },
  519. async submitForm() {
  520. await this.$refs.ruleForm.validate(async (valid) => {
  521. if (valid) {
  522. if (this.loading) {
  523. return;
  524. }
  525. this.loading = true;
  526. if (this.stock_code == this.stock_in_code) {
  527. this.$message.warning("出入库仓库不能相同!");
  528. this.loading = false;
  529. return;
  530. }
  531. if (this.tableForm.product_go.length === 0) {
  532. this.$message.warning("请选择调拨商品!");
  533. this.loading = false;
  534. return;
  535. }
  536. let index = -1,
  537. isok = true,
  538. ishas = true,
  539. good = [];
  540. this.tableForm.product_go.forEach((v, i) => {
  541. if (v.edit && index === -1) {
  542. index = i;
  543. }
  544. let stock = parseInt(v.usable_num),
  545. num = parseInt(v.allot_num);
  546. if (stock === 0) {
  547. ishas = false;
  548. }
  549. if (num > stock) {
  550. isok = false;
  551. }
  552. });
  553. if (index !== -1) {
  554. this.$message.warning("当前已有商品正在编辑!");
  555. this.loading = false;
  556. return;
  557. }
  558. if (!ishas) {
  559. this.$message.warning("部分商品已无可用库存数,无法进行调拨操作!");
  560. this.loading = false;
  561. return;
  562. }
  563. if (!isok) {
  564. this.$message.warning("部分商品调拨数量已大于可用库存数!");
  565. this.loading = false;
  566. return;
  567. }
  568. good = this.getGoodList();
  569. const { stock_code, stock_in_code } = JSON.parse(JSON.stringify(this.ruleForm));
  570. console.log(good);
  571. const model = {
  572. id: this.id,
  573. wsm_out: stock_code.toString(), //出库仓库
  574. wsm_in: stock_in_code.toString(), //入库仓库
  575. good: good,
  576. };
  577. // this.loading = false;
  578. // return;
  579. let res = {};
  580. if (this.id === "add") {
  581. delete model["id"];
  582. res = await asyncRequest.add(model);
  583. } else {
  584. res = await asyncRequest.update(model);
  585. }
  586. this.loading = false;
  587. if (res && res.code === 0) {
  588. const title = this.id === "add" ? "添加成功" : "修改成功";
  589. this.$notify.success({
  590. title,
  591. message: "",
  592. });
  593. this.$emit("refresh");
  594. } else if (res && res.code >= 100 && res.code <= 104) {
  595. await this.logout();
  596. } else {
  597. this.$message.warning(res.message);
  598. }
  599. } else {
  600. console.log("error submit!!");
  601. return false;
  602. }
  603. });
  604. },
  605. //提交表单前 商品信息list 汇总
  606. getGoodList() {
  607. let newList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
  608. resList = [];
  609. // console.log(this.oldList);
  610. // console.log(this.tableForm.product_go);
  611. if (this.oldList.length === 0) {
  612. resList = JSON.parse(JSON.stringify(newList));
  613. resList.map((v1) => {
  614. console.log(v1);
  615. v1.id = v1.id || "";
  616. v1.is_del = "0";
  617. return v1;
  618. });
  619. } else {
  620. newList.forEach((v1) => {
  621. let index = this.oldList.findIndex((v2) => v1.bnCode === v2.bnCode);
  622. console.log(index);
  623. if (index === -1) {
  624. let model1 = {
  625. bnCode: v1.bnCode || "",
  626. spuCode: v1.spuCode || "",
  627. id: v1.id || "",
  628. allot_num: v1.allot_num || "0",
  629. balance_num: v1.balance_num || "0",
  630. is_del: "0",
  631. };
  632. resList.push(model1);
  633. } else {
  634. let model2 = {
  635. bnCode: v1.bnCode || "",
  636. spuCode: v1.spuCode || "",
  637. id: this.oldList[index].id || "",
  638. allot_num: v1.allot_num || "0",
  639. balance_num: v1.balance_num || "0",
  640. is_del: "0",
  641. };
  642. resList.push(model2);
  643. }
  644. });
  645. }
  646. // (dList = JSON.parse(JSON.stringify(this.delList))), console.log(oldList);
  647. // console.log(oldList);
  648. // oldList.forEach((v1) => {
  649. // let goodModel = {
  650. // bnCode: v1.bnCode || "",
  651. // spuCode: v1.spuCode || "",
  652. // id: v1.id || "",
  653. // // good_code: v1.type_code,
  654. // allot_num: v1.allot_num || "0",
  655. // balance_num: v1.balance_num || "0",
  656. // is_del: "0",
  657. // };
  658. // resList.push(goodModel);
  659. // });
  660. // dList.forEach((v2) => {
  661. // let goodModel = {
  662. // bnCode: v2.bnCode || "",
  663. // spuCode: v2.type_code || "",
  664. // id: v2.id || "",
  665. // allot_num: v2.allot_num,
  666. // balance_num: v2.balance_num || "0",
  667. // is_del: "1",
  668. // };
  669. // resList.push(goodModel);
  670. // });
  671. return resList;
  672. },
  673. // 删除行操作
  674. deleteRow(index, rows) {
  675. if (this.id !== "add" && rows[index].id) {
  676. this.delList.push(rows[index]);
  677. }
  678. rows.splice(index, 1);
  679. },
  680. //保存某一行
  681. checkRow(rowIndex) {
  682. const { usable_num, allot_num } = this.tableForm.product_go[rowIndex];
  683. console.log(usable_num, allot_num);
  684. if (!isnumber(allot_num)) {
  685. this.$message.warning("请输入数字!");
  686. return;
  687. }
  688. if (allot_num === "0") {
  689. this.$message.warning("调拨数量不能为0!");
  690. return;
  691. }
  692. const num = isNaN(parseInt(usable_num)) ? 0 : parseInt(usable_num);
  693. if (parseInt(allot_num) > num) {
  694. this.$message.warning("调拨数量不大于批量库存数!");
  695. return;
  696. }
  697. this.tableForm.product_go[rowIndex].edit = false;
  698. },
  699. //编辑某一行
  700. editRow(rowIndex) {
  701. let index = this.tableForm.product_go.findIndex((v) => v.edit);
  702. if (index !== -1) {
  703. this.$message.warning("请完成其他行的编辑!");
  704. return;
  705. } else {
  706. this.tableForm.product_go[rowIndex].edit = true;
  707. }
  708. },
  709. // 执行点击商品名称的抛出事件
  710. addGoodsRes(e) {
  711. let oldList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
  712. addList = JSON.parse(JSON.stringify(e)),
  713. newList = [].concat(...oldList),
  714. dList = JSON.parse(JSON.stringify(this.delList));
  715. console.log(addList);
  716. addList.forEach((v1, index) => {
  717. let oldindex = oldList.findIndex((v2) => v1.bnCode + "" === v2.bnCode + "");
  718. if (oldindex === -1) {
  719. addList[index].usable_num = addList[index].balance_num;
  720. addList[index].allot_num = addList[index].balance_num;
  721. addList[index].edit = false;
  722. newList.push(addList[index]);
  723. }
  724. });
  725. newList.forEach((v3) => {
  726. let otherindex = dList.findIndex((v4) => v3.bnCode + "" === v4.bnCode + "");
  727. if (otherindex !== -1) {
  728. dList.splice(otherindex, 1);
  729. }
  730. });
  731. this.tableForm.product_go = [].concat(...newList);
  732. this.delList = [].concat(...dList);
  733. this.$refs.tableForm.validateField("product_go");
  734. },
  735. // 选择出库供应商
  736. selectSupplierOut(e) {
  737. const { code } = e;
  738. this.ruleForm.supplier_code = code ? [code] : [];
  739. this.supplier_code = code || "";
  740. this.ruleForm.stock_code = [];
  741. this.tableForm.product_go = [];
  742. this.delList = [];
  743. this.$refs.ruleForm.validateField("supplier_code");
  744. },
  745. // 选择出库仓库
  746. selectStockOut(e) {
  747. if (e && e.id) {
  748. this.ruleForm.stock_code = [e.code];
  749. this.stock_code = e.code;
  750. } else {
  751. this.ruleForm.stock_code = [];
  752. this.stock_code = "";
  753. }
  754. this.tableForm.product_go = [];
  755. this.delList = [];
  756. this.$refs.ruleForm.validateField("stock_code");
  757. },
  758. // 选择入库仓库
  759. selectStockIn(e) {
  760. if (e && e.id) {
  761. this.ruleForm.stock_in_code = [e.code];
  762. this.stock_in_code = e.code;
  763. } else {
  764. this.ruleForm.stock_in_code = [];
  765. this.stock_in_code = "";
  766. }
  767. this.$refs.ruleForm.validateField("stock_in_code");
  768. },
  769. // 选择入库供应商
  770. selectSupplierIn(e) {
  771. if (e && e.id) {
  772. this.ruleForm.supplier_in_code = [e.code];
  773. this.supplier_in_code = e.code;
  774. } else {
  775. this.ruleForm.supplier_in_code = [];
  776. this.supplier_in_code = "";
  777. }
  778. this.ruleForm.stock_in_code = [];
  779. this.$refs.ruleForm.validateField("supplier_in_code");
  780. },
  781. },
  782. };
  783. </script>
  784. <style lang="scss" scoped>
  785. .allot,
  786. .allotDetail {
  787. .label-title-model {
  788. line-height: 30px;
  789. width: 100%;
  790. color: #909399;
  791. font-weight: bold;
  792. font-size: 15px;
  793. padding-bottom: 12px;
  794. text-align: center;
  795. }
  796. .product_go {
  797. .el-form-item--mini.el-form-item {
  798. margin: 0 !important;
  799. .spscope {
  800. word-break: break-all !important;
  801. line-height: 23px !important;
  802. padding: 0 !important;
  803. margin: 0 !important;
  804. list-style: none !important;
  805. font-style: normal !important;
  806. text-decoration: none !important;
  807. border: none !important;
  808. display: inline-block !important;
  809. font-weight: 500 !important;
  810. font-family: "Microsoft Yahei", sans-serif !important;
  811. -webkit-tap-highlight-color: transparent !important;
  812. -webkit-font-smoothing: antialiased !important;
  813. color: #606266 !important;
  814. font-size: 12px !important;
  815. }
  816. }
  817. }
  818. }
  819. </style>