Inspection-table.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. <template>
  2. <el-row class="addForm">
  3. <el-col :span="24">
  4. <el-form
  5. :model="tableForm"
  6. :rules="tableFormThis"
  7. ref="tableForm"
  8. :size="'mini'"
  9. class="demo-tableForm product_go"
  10. >
  11. <el-table
  12. :data="tableForm.product_go"
  13. border
  14. :size="'mini'"
  15. row-key="key"
  16. >
  17. <template v-for="(item, index) in columns">
  18. <el-table-column
  19. :prop="item.prop"
  20. show-overflow-tooltip
  21. :label="item.label"
  22. v-if="
  23. item.type === 'text' && item.show && item.prop !== 'error_code'
  24. "
  25. :width="item.width"
  26. :min-width="item.minWidth"
  27. :key="item.prop + index"
  28. />
  29. <el-table-column
  30. :prop="item.prop"
  31. :label="item.label"
  32. v-else-if="
  33. item.type === 'text' && item.show && item.prop === 'error_code'
  34. "
  35. :width="item.width"
  36. :min-width="item.minWidth"
  37. :key="item.prop + index"
  38. >
  39. <template slot-scope="scope">
  40. <span class="spscope">{{ scope.row.error_msg }}</span>
  41. </template>
  42. </el-table-column>
  43. <el-table-column
  44. :prop="item.prop"
  45. :label="item.label"
  46. v-else-if="item.type !== 'text' && item.show"
  47. :width="item.width"
  48. :min-width="item.minWidth"
  49. :key="item.prop + index"
  50. >
  51. <template slot-scope="scope">
  52. <el-form-item
  53. :prop="'product_go.' + scope.$index + '.' + item.prop"
  54. :rules="scope.row.edit ? tableFormThis[item.prop] : {}"
  55. :size="'mini'"
  56. >
  57. <el-input
  58. v-if="scope.row.edit === true && item.type === 'input'"
  59. :size="'mini'"
  60. maxlength="250"
  61. clearable
  62. v-model="scope.row[item.prop]"
  63. />
  64. <el-select
  65. v-model="scope.row[item.prop]"
  66. v-if="scope.row.edit === true && item.type === 'select'"
  67. style="width: 100%"
  68. clearable
  69. placeholder="异常原因"
  70. @change="elSelectChange($event, scope.$index)"
  71. >
  72. <el-option
  73. v-for="item in options"
  74. :key="item.result_code"
  75. :label="item.result"
  76. :value="item.result_code"
  77. :disabled="item.status === '0'"
  78. >
  79. </el-option>
  80. </el-select>
  81. <span v-if="!scope.row.edit" class="spscope">{{
  82. item.type === "select"
  83. ? scope.row.error_msg
  84. : scope.row[item.prop]
  85. }}</span>
  86. </el-form-item>
  87. </template>
  88. </el-table-column>
  89. </template>
  90. <el-table-column
  91. fixed="right"
  92. v-if="
  93. (status == '3' && powers.some((item) => item == '022')) ||
  94. (status == '4' && powers.some((item) => item == '023'))
  95. "
  96. label="操作"
  97. width="80"
  98. >
  99. <template slot-scope="scope">
  100. <el-tooltip
  101. effect="dark"
  102. content="编辑"
  103. v-if="!scope.row.edit"
  104. placement="top"
  105. >
  106. <i
  107. class="el-icon-edit tb-icon"
  108. @click="editRow(scope.$index)"
  109. ></i>
  110. </el-tooltip>
  111. <el-tooltip
  112. effect="dark"
  113. content="保存"
  114. v-if="scope.row.edit"
  115. placement="top"
  116. >
  117. <i
  118. class="el-icon-circle-check tb-icon"
  119. @click="checkRow(scope.$index)"
  120. ></i>
  121. </el-tooltip>
  122. <el-tooltip effect="dark" content="重置" placement="top">
  123. <i
  124. class="el-icon-refresh-left tb-icon"
  125. @click="resetRow(scope.$index)"
  126. ></i>
  127. </el-tooltip>
  128. </template>
  129. </el-table-column>
  130. </el-table>
  131. </el-form>
  132. </el-col>
  133. <el-col :span="24" style="text-align: right; padding: 10px 0 0 0">
  134. <el-button
  135. type="primary"
  136. :size="'mini'"
  137. @click="submitForm"
  138. v-if="
  139. (status == '3' && powers.some((item) => item == '022')) ||
  140. (status == '4' && powers.some((item) => item == '023'))
  141. "
  142. >保 存
  143. </el-button>
  144. </el-col>
  145. </el-row>
  146. </template>
  147. <script>
  148. import asyncRequest from "@/apis/service/stock/allot/detail";
  149. import resToken from "@/mixins/resToken";
  150. import { isnumber } from "@/utils/validate";
  151. import config from "./columns"; //表格列参数
  152. export default {
  153. name: "allot",
  154. props: ["id", "sitem", "newTime"],
  155. mixins: [resToken],
  156. computed: {
  157. powers() {
  158. let tran =
  159. this.$store.getters.btnList.find(
  160. (item) => item.menu_route == "allotDetail"
  161. ) || {};
  162. if (tran && tran.action && tran.action.length > 0) {
  163. return tran.action;
  164. } else {
  165. return [];
  166. }
  167. },
  168. },
  169. data() {
  170. return {
  171. options: [],
  172. status: "",
  173. loading: false,
  174. tableForm: {
  175. product_go: [], //出库商品
  176. },
  177. tableFormThis: config.tableFormThis,
  178. columns: [],
  179. };
  180. },
  181. watch: {
  182. newTime: function (val) {
  183. if (val) {
  184. this.initForm();
  185. }
  186. },
  187. },
  188. mounted() {
  189. this.initForm();
  190. },
  191. methods: {
  192. async initForm() {
  193. this.loading = true;
  194. this.columns = [];
  195. await this.getresultlist();
  196. await this.resetForm();
  197. this.loading = false;
  198. },
  199. async getresultlist() {
  200. const res = await asyncRequest.resultlist({
  201. page: 1,
  202. size: 100,
  203. type:"1",
  204. status: "",
  205. });
  206. if (res && res.code === 0 && res.data) {
  207. const { list } = res.data;
  208. this.options = list;
  209. } else if (res && res.code >= 100 && res.code <= 104) {
  210. await this.logout();
  211. } else {
  212. this.$message.warning(res.message);
  213. }
  214. },
  215. async resetForm() {
  216. // 重置
  217. await this.$nextTick(() => {
  218. if (this.$refs.tableForm) {
  219. this.$refs.tableForm.resetFields();
  220. this.$refs.tableForm.clearValidate();
  221. const { item, status } = this.sitem;
  222. this.status = status;
  223. let columnsList = JSON.parse(JSON.stringify(config.columns));
  224. columnsList.forEach((v1) => {
  225. if (this.status == "5" || this.status == "4") {
  226. v1.show = true;
  227. }
  228. if (this.status == "4" && v1.prop === "stock_num") {
  229. v1.type = "input";
  230. v1.width = "150px";
  231. }
  232. if (this.status == "3") {
  233. if (v1.prop === "error_remark" || v1.prop === "error_num") {
  234. v1.show = true;
  235. v1.width = "150px";
  236. v1.type = "input";
  237. }
  238. if (v1.prop === "error_code") {
  239. v1.show = true;
  240. v1.width = "150px";
  241. v1.type = "select";
  242. }
  243. }
  244. this.columns.push(v1);
  245. });
  246. this.tableForm.product_go = [];
  247. let list = JSON.parse(JSON.stringify(item));
  248. // item || []; //出库商品
  249. list.forEach((v) => {
  250. v.usable_stock = v.usable_num;
  251. v.type_code = v.good_type_code;
  252. v.error_num = v.error_num || "0";
  253. v.error_code = v.error_code || "";
  254. v.error_msg = v.error_msg || "";
  255. v.error_remark = v.error_remark || "";
  256. v.stock_num = v.stock_num || "0";
  257. v.edit = false;
  258. this.tableForm.product_go.push(v);
  259. });
  260. }
  261. });
  262. },
  263. async submitForm() {
  264. let index = -1,
  265. good = [];
  266. this.tableForm.product_go.forEach((v, i) => {
  267. if (v.edit && index === -1) {
  268. index = i;
  269. }
  270. });
  271. if (index !== -1) {
  272. this.$message.warning("当前已有商品正在编辑!");
  273. return;
  274. }
  275. this.loading = true;
  276. good = this.getGoodList();
  277. const model = {
  278. allot_code: this.sitem.allot_code,
  279. good: good,
  280. };
  281. let res = {};
  282. if (this.status == "3") {
  283. res = await asyncRequest.allotgetin(model);
  284. } else {
  285. res = await asyncRequest.allotvesio(model);
  286. }
  287. this.loading = false;
  288. if (res && res.code === 0) {
  289. this.$notify.success({
  290. title:
  291. this.status == "3"
  292. ? "入库方验货结果提交成功!"
  293. : "入库方验货审核结果提交成功",
  294. message: "",
  295. });
  296. this.$emit("refresh");
  297. } else if (res && res.code >= 100 && res.code <= 104) {
  298. await this.logout();
  299. } else {
  300. this.$message.warning(res.message);
  301. }
  302. },
  303. //提交表单前 商品信息list 汇总
  304. getGoodList() {
  305. let oldList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
  306. resList = [];
  307. oldList.forEach((v1) => {
  308. let goodModel = {
  309. good_code: v1.type_code,
  310. usable_num: v1.usable_stock,
  311. error_num: v1.error_num,
  312. error_remark: v1.error_remark,
  313. error_code: v1.error_code,
  314. };
  315. if (this.status === "4") {
  316. goodModel.stock_num = v1.stock_num;
  317. }
  318. resList.push(goodModel);
  319. });
  320. return resList;
  321. },
  322. // 重置行操作
  323. resetRow(index) {
  324. if (this.status === "3") {
  325. this.tableForm.product_go[index].error_num = "0";
  326. this.tableForm.product_go[index].error_code = "";
  327. this.tableForm.product_go[index].error_msg = "";
  328. this.tableForm.product_go[index].error_remark = "";
  329. } else {
  330. this.tableForm.product_go[index].stock_num = "0";
  331. }
  332. },
  333. //异常原因筛选
  334. elSelectChange(e, index) {
  335. let oindex = this.options.findIndex((v) => v.result_code === e);
  336. this.tableForm.product_go[index].error_msg =
  337. oindex !== -1 ? this.options[oindex].result : "";
  338. },
  339. //保存某一行
  340. checkRow(rowIndex) {
  341. const { allot_num, error_num, error_code, error_remark, stock_num } =
  342. this.tableForm.product_go[rowIndex];
  343. if (this.status === "3") {
  344. if (!isnumber(error_num + "") || error_num === "") {
  345. this.$message.warning("异常数量必须为整数!");
  346. return;
  347. }
  348. if (parseInt(error_num + "") > parseInt(allot_num + "")) {
  349. this.$message.warning("异常数量不大于调拨总数量!");
  350. return;
  351. }
  352. if (parseInt(error_num + "") > 0 && error_code === "") {
  353. this.$message.warning("请选择异常原因!");
  354. return;
  355. }
  356. if (parseInt(error_num + "") > 0 && error_remark === "") {
  357. this.$message.warning("请输入异常备注!");
  358. return;
  359. }
  360. if (parseInt(error_num + "") === 0 && error_code !== "") {
  361. this.$message.warning("异常数量为零,不用选择异常原因!");
  362. return;
  363. }
  364. if (parseInt(error_num + "") === 0 && error_remark !== "") {
  365. this.$message.warning("异常数量为零,不用填写异常备注!");
  366. return;
  367. }
  368. } else {
  369. if (!isnumber(stock_num + "" || stock_num === "")) {
  370. this.$message.warning("入库数量必须为整数!");
  371. return;
  372. }
  373. if (parseInt(stock_num + "") > parseInt(allot_num + "")) {
  374. this.$message.warning("入库数量不大于调拨总数量!");
  375. return;
  376. }
  377. }
  378. this.tableForm.product_go[rowIndex].edit = false;
  379. },
  380. //编辑某一行
  381. editRow(rowIndex) {
  382. let index = this.tableForm.product_go.findIndex((v) => v.edit);
  383. if (index !== -1) {
  384. this.$message.warning("请完成其他行的编辑!");
  385. return;
  386. } else {
  387. this.tableForm.product_go[rowIndex].edit = true;
  388. }
  389. },
  390. },
  391. };
  392. </script>
  393. <style lang="scss" scoped>
  394. .allot,
  395. .allotDetail {
  396. .label-title-model {
  397. line-height: 30px;
  398. width: 100%;
  399. color: #909399;
  400. font-weight: bold;
  401. font-size: 15px;
  402. padding-bottom: 12px;
  403. text-align: center;
  404. }
  405. .product_go {
  406. .el-form-item--mini.el-form-item {
  407. margin: 0 !important;
  408. .spscope {
  409. word-break: break-all !important;
  410. line-height: 23px !important;
  411. padding: 0 !important;
  412. margin: 0 !important;
  413. list-style: none !important;
  414. font-style: normal !important;
  415. text-decoration: none !important;
  416. border: none !important;
  417. display: inline-block !important;
  418. font-weight: 500 !important;
  419. font-family: "Microsoft Yahei", sans-serif !important;
  420. -webkit-tap-highlight-color: transparent !important;
  421. -webkit-font-smoothing: antialiased !important;
  422. color: #606266 !important;
  423. font-size: 12px !important;
  424. }
  425. }
  426. }
  427. }
  428. </style>