order-in-table.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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 :data="tableForm.product_go" border :size="'mini'" row-key="key">
  12. <template v-for="(item, index) in columns">
  13. <el-table-column
  14. :prop="item.prop"
  15. show-overflow-tooltip
  16. :label="item.label"
  17. :width="item.width"
  18. :min-width="item.minWidth"
  19. :key="item.prop + index"
  20. />
  21. </template>
  22. <el-table-column fixed="right" width="50">
  23. <template slot="header" slot-scope="scope">
  24. <!-- sitem.has_account + '' === '0' && -->
  25. <el-tooltip
  26. class="fr"
  27. style="margin: 3px 0 0 0"
  28. v-if="
  29. ((status + '' === '1' && powers.some((i) => i == '028')) ||
  30. (status + '' === '2' && powers.some((i) => i == '028'))) &&
  31. sitem &&
  32. ((
  33. (sitem.order_type + '' === '2' ||
  34. sitem.order_type + '' === '3' ||
  35. sitem.order_type + '' === '4')) ||
  36. sitem.order_type + '' === '1')
  37. "
  38. effect="dark"
  39. content="添加"
  40. placement="top"
  41. >
  42. <i
  43. class="el-icon-circle-plus-outline tb-icon"
  44. style="color: #6954f0"
  45. @click="openModal()"
  46. ></i>
  47. </el-tooltip>
  48. <span v-else>操作</span>
  49. </template>
  50. <template slot-scope="scope">
  51. <el-tooltip
  52. v-if="powers.some((i) => i == '007')"
  53. effect="dark"
  54. content="详情"
  55. placement="top"
  56. >
  57. <i
  58. class="el-icon-view tb-icon"
  59. @click="
  60. routeGoto('wsmInOrderDetail', {
  61. id: scope.row.wsm_in_code,
  62. })
  63. "
  64. ></i>
  65. </el-tooltip>
  66. </template>
  67. </el-table-column>
  68. </el-table>
  69. </el-form>
  70. <wsm-in-order-model
  71. :show-model="showModel"
  72. :sitem="modelSitem"
  73. @refresh="(showModel = false), $emit('refresh')"
  74. @cancel="showModel = false"
  75. />
  76. </el-col>
  77. </el-row>
  78. </template>
  79. <script>
  80. import asyncRequest from "@/apis/service/stock/allot/detail";
  81. import resToken from "@/mixins/resToken";
  82. import config from "./columns-table"; //表格列参数
  83. import wsmInOrderModel from "@/views/purchaseIn/wsmInOrder/components/wsm-in-order-model";
  84. export default {
  85. name: "allot",
  86. props: ["id", "sitem", "newTime"],
  87. mixins: [resToken],
  88. components: { wsmInOrderModel },
  89. computed: {
  90. powers() {
  91. const tran =
  92. this.$store.getters.btnList.find(
  93. (item) => item.menu_route == "purchaseOrderDetail"
  94. ) || {};
  95. const { action } = tran ?? {};
  96. return action ?? [];
  97. },
  98. },
  99. data() {
  100. return {
  101. showModel: false,
  102. isDetail: false,
  103. modelId: 0,
  104. options: [],
  105. status: "",
  106. loading: false,
  107. modelSitem: null,
  108. wsm_in_code: "",
  109. tableForm: {
  110. product_go: [], //出库商品
  111. },
  112. tableFormThis: config.tableFormThis,
  113. statusOptions: [
  114. {
  115. value: '1',
  116. label: '待库管验货'
  117. },
  118. {
  119. value: '2',
  120. label: '入库完成'
  121. }
  122. ],
  123. columns: config.columns,
  124. };
  125. },
  126. watch: {
  127. newTime: function (val) {
  128. if (val) {
  129. this.initForm();
  130. }
  131. },
  132. },
  133. mounted() {
  134. this.initForm();
  135. },
  136. methods: {
  137. async initForm() {
  138. this.loading = true;
  139. this.modelSitem = null;
  140. await this.resetForm();
  141. this.loading = false;
  142. },
  143. async resetForm() {
  144. // 重置
  145. await this.$nextTick(() => {
  146. if (this.$refs.tableForm) {
  147. this.$refs.tableForm.resetFields();
  148. this.$refs.tableForm.clearValidate();
  149. const { status, child } = this.sitem;
  150. this.status = status;
  151. this.tableForm.product_go = child || [];
  152. this.tableForm.product_go.forEach((e) => {
  153. e.sendtype_name =
  154. e.sendtype + '' === "1" ? "公司自提" : e.sendtype === "2" ? "供应商包邮" : "--";
  155. e.status_name =
  156. (this.statusOptions.find((item) => item.value == e.status) || {}).label ||
  157. "--";
  158. });
  159. }
  160. });
  161. },
  162. openModal() {
  163. this.modelSitem = this.sitem;
  164. this.showModel = true;
  165. },
  166. async submitForm() {
  167. if (this.loading) {
  168. return;
  169. }
  170. let good = [];
  171. this.loading = true;
  172. good = this.getGoodList();
  173. const model = {
  174. allot_code: this.sitem.allot_code,
  175. good: good,
  176. };
  177. let res = {};
  178. if (this.status == "3") {
  179. res = await asyncRequest.allotgetin(model);
  180. } else {
  181. res = await asyncRequest.allotvesio(model);
  182. }
  183. this.loading = false;
  184. if (res && res.code === 0) {
  185. this.$notify.success({
  186. title:
  187. this.status == "3" ? "入库方验货结果提交成功!" : "入库方验货审核结果提交成功",
  188. message: "",
  189. });
  190. this.$emit("refresh");
  191. } else if (res && res.code >= 100 && res.code <= 104) {
  192. await this.logout();
  193. } else {
  194. this.$message.warning(res.message);
  195. }
  196. },
  197. //提交表单前 商品信息list 汇总
  198. getGoodList() {
  199. let oldList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
  200. resList = [];
  201. oldList.forEach((v1) => {
  202. let goodModel = {
  203. good_code: v1.type_code,
  204. usable_num: v1.usable_stock,
  205. error_num: v1.error_num,
  206. error_remark: v1.error_remark,
  207. error_code: v1.error_code,
  208. };
  209. if (this.status + '' === "4") {
  210. goodModel.stock_num = v1.stock_num;
  211. }
  212. resList.push(goodModel);
  213. });
  214. return resList;
  215. },
  216. },
  217. };
  218. </script>
  219. <style lang="scss" scoped>
  220. .allot,
  221. .allotDetail {
  222. .label-title-model {
  223. line-height: 30px;
  224. width: 100%;
  225. color: #909399;
  226. font-weight: bold;
  227. font-size: 15px;
  228. padding-bottom: 12px;
  229. text-align: center;
  230. }
  231. .product_go {
  232. .el-form-item--mini.el-form-item {
  233. margin: 0 !important;
  234. .spscope {
  235. word-break: break-all !important;
  236. line-height: 23px !important;
  237. padding: 0 !important;
  238. margin: 0 !important;
  239. list-style: none !important;
  240. font-style: normal !important;
  241. text-decoration: none !important;
  242. border: none !important;
  243. display: inline-block !important;
  244. font-weight: 500 !important;
  245. font-family: "Microsoft Yahei", sans-serif !important;
  246. -webkit-tap-highlight-color: transparent !important;
  247. -webkit-font-smoothing: antialiased !important;
  248. color: #606266 !important;
  249. font-size: 12px !important;
  250. }
  251. }
  252. }
  253. }
  254. </style>