addForm.vue 24 KB

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