order-out-table.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. <template>
  2. <div class="outOrderTable">
  3. <el-table
  4. ref="addrForm"
  5. :data="tableData"
  6. border
  7. :size="'mini'"
  8. max-height="300px"
  9. style="width: 100%"
  10. row-key="key"
  11. >
  12. <el-table-column
  13. show-overflow-tooltip
  14. prop="outCode"
  15. label="发货申请单号"
  16. width="155"
  17. />
  18. <el-table-column
  19. show-overflow-tooltip
  20. prop="status"
  21. label="状态"
  22. width="80"
  23. >
  24. <template slot-scope="scope">
  25. {{ scope.row.status }}
  26. <el-tag
  27. :size="tablebtnSize"
  28. :type="scope.row.status == '0' ? 'warning' : ''"
  29. v-text="
  30. (statusOptions.find((item) => item.id == scope.row.status) || {})
  31. .label || '--'
  32. "
  33. ></el-tag>
  34. </template>
  35. </el-table-column>
  36. <el-table-column
  37. show-overflow-tooltip
  38. prop="receipt_quantity"
  39. label="发货数量"
  40. width="80"
  41. />
  42. <el-table-column
  43. show-overflow-tooltip
  44. prop="contactor"
  45. label="联系人"
  46. width="80"
  47. />
  48. <el-table-column
  49. show-overflow-tooltip
  50. prop="mobile"
  51. label="联系电话"
  52. width="110"
  53. />
  54. <el-table-column
  55. show-overflow-tooltip
  56. prop="addr"
  57. label="收货地址"
  58. min-width="170"
  59. >
  60. <template slot-scope="scope">
  61. {{ scope.row.addr_info }}{{ scope.row.addr }}
  62. </template>
  63. </el-table-column>
  64. <el-table-column
  65. show-overflow-tooltip
  66. prop="post_name"
  67. label="物流公司"
  68. min-width="110"
  69. />
  70. <el-table-column
  71. show-overflow-tooltip
  72. prop="post_code"
  73. label="物流单号"
  74. width="160"
  75. />
  76. <el-table-column
  77. show-overflow-tooltip
  78. prop="sendtime"
  79. label="发货时间"
  80. width="145"
  81. />
  82. <el-table-column
  83. fixed="right"
  84. width="50"
  85. v-if="
  86. ((status === '0' || status === '1') &&
  87. powers.some((item) => item == '048')) ||
  88. powers.some((item) => item == '007')
  89. "
  90. >
  91. <template slot="header" slot-scope="scope">
  92. <el-tooltip
  93. style="margin: 3px 0 0 0"
  94. effect="dark"
  95. v-if="
  96. (status === '0' || status === '1') &&
  97. powers.some((item) => item == '048')
  98. "
  99. content="添加"
  100. placement="top"
  101. >
  102. <i
  103. class="el-icon-circle-plus-outline tb-icon"
  104. style="color: #63cbe7; magin: 0 0 0 10px"
  105. @click="openHouseModal()"
  106. ></i>
  107. </el-tooltip>
  108. <span v-else>操作</span>
  109. </template>
  110. <template slot-scope="scope">
  111. <el-tooltip
  112. effect="dark"
  113. content="查看"
  114. placement="top"
  115. v-if="powers.some((item) => item == '007')"
  116. >
  117. <i
  118. class="el-icon-view tb-icon"
  119. @click="
  120. routeGoto('sellOutOrderDetail', { id: scope.row.outCode })
  121. "
  122. ></i>
  123. </el-tooltip>
  124. </template>
  125. </el-table-column>
  126. </el-table>
  127. <out-order-add-model
  128. :showModel="modelShowModel"
  129. :id="modelId"
  130. :sitem="modelItem"
  131. @refresh="refresh"
  132. @closeModel="closeModel"
  133. />
  134. <!-- <add-edit
  135. :id="modelId"
  136. :sitem="s_sitem"
  137. :show-model="showModel"
  138. :is-detail="isDetail"
  139. @refresh="searchList"
  140. @cancel="showModel = false"
  141. /> -->
  142. </div>
  143. </template>
  144. <script>
  145. import mixinPage from "@/mixins/elPaginationHandle";
  146. import resToken from "@/mixins/resToken";
  147. import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
  148. import outOrderAddModel from "./out-order-add-model";
  149. import { mapGetters } from "vuex";
  150. export default {
  151. name: "salesOrderDetail",
  152. mixins: [mixinPage, resToken],
  153. props: ["newTime", "id", "sitem"],
  154. components: { outOrderAddModel },
  155. watch: {
  156. newTime: function (val) {
  157. if (val) {
  158. this.initForm();
  159. }
  160. },
  161. },
  162. computed: {
  163. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  164. powers() {
  165. let tran =
  166. this.$store.getters.btnList.find(
  167. (item) => item.menu_route == "salesOrderDetail"
  168. ) || {};
  169. if (tran && tran.action && tran.action.length > 0) {
  170. return tran.action;
  171. } else {
  172. return [];
  173. }
  174. },
  175. },
  176. data() {
  177. return {
  178. orderCode: "",
  179. outCode: "",
  180. // 状态
  181. statusOptions: [
  182. { id: "1", label: "已出库" },
  183. { id: "2", label: "验收中" },
  184. { id: "3", label: "验收完成" },
  185. ],
  186. showGoodsModel: false,
  187. stock_code: "",
  188. tableData: [],
  189. loading: false,
  190. queryId: "",
  191. status: "",
  192. showModel: null,
  193. modelId: "",
  194. modelItem: null,
  195. s_sitem: null,
  196. };
  197. },
  198. mounted() {
  199. this.initForm();
  200. },
  201. methods: {
  202. closeModel() {
  203. this.modelId = "";
  204. this.modelShowModel = false;
  205. },
  206. refresh() {
  207. this.$emit("refresh");
  208. this.modelId = "";
  209. this.modelShowModel = false;
  210. },
  211. async initForm() {
  212. this.status = "";
  213. this.queryId = this.$route.query.id;
  214. // this.rulesThis = this.rules;
  215. this.resetForm();
  216. },
  217. getNewTime() {
  218. this.newTime = new Date().valueOf();
  219. },
  220. async resetForm() {
  221. // 重置
  222. await this.$nextTick(() => {
  223. const { addrs, status } = this.sitem;
  224. this.status = status;
  225. console.log(this.status);
  226. this.tableData = JSON.parse(JSON.stringify(addrs));
  227. });
  228. },
  229. editRow(index) {
  230. let findex = this.stockForm.good_stock.findIndex((v) => v.edit === true);
  231. if (findex !== -1) {
  232. this.$message.warning("当前已有发货仓库信息在编辑,请保存后再试!");
  233. return;
  234. } else {
  235. this.stockForm.good_stock[index].edit = true;
  236. }
  237. },
  238. checkStockRow(index) {
  239. let total = parseInt(this.stockForm.good_stock[index].usable_stock),
  240. num = parseInt(this.stockForm.good_stock[index].num);
  241. if (total === 0) {
  242. this.$message.warning("该仓库已无该商品库存!不能销售!");
  243. return;
  244. } else {
  245. if (num > total) {
  246. this.$message.warning("销售数量不能大于可用库存!");
  247. return;
  248. } else {
  249. this.stockForm.good_stock[index].edit = false;
  250. }
  251. }
  252. },
  253. openHouseModal() {
  254. this.modelId = "add";
  255. this.modelItem = this.sitem;
  256. this.modelShowModel = true;
  257. },
  258. //省市区保存某一行
  259. checkRow(rowIndex) {
  260. this.$refs.addrForm.validate((valid) => {
  261. if (valid) {
  262. this.tableData[rowIndex].edit = false;
  263. } else {
  264. console.log("error submit!!");
  265. return false;
  266. }
  267. });
  268. },
  269. // 省市区删除行操作
  270. deleteRow(index, rows) {
  271. rows.splice(index, 1);
  272. },
  273. async submitForm() {
  274. await this.$refs.ruleForm.validate(async (valid) => {
  275. if (valid) {
  276. this.loading = true;
  277. const { order_addr } = JSON.parse(JSON.stringify(this.addrForm));
  278. let model = {
  279. id: this.queryId,
  280. order_addr: [],
  281. };
  282. order_addr.forEach((v2) => {
  283. let model2 = {
  284. post_fee: v2.post_fee,
  285. id: v2.id,
  286. };
  287. model.order_addr.push(model2);
  288. });
  289. let res = await asyncRequest.salefee(model);
  290. this.loading = false;
  291. if (res && res.code === 0) {
  292. this.$notify.success({
  293. title: "反馈物流费用成功!",
  294. message: "",
  295. });
  296. this.showModelThis = false;
  297. // 刷新
  298. this.$emit("refresh");
  299. } else if (res && res.code >= 100 && res.code <= 104) {
  300. await this.logout();
  301. } else {
  302. this.$message.warning(res.message);
  303. }
  304. } else {
  305. console.log("error submit!!");
  306. return false;
  307. }
  308. });
  309. },
  310. openModal(code, sitem, outcode) {
  311. this.s_sitem = sitem;
  312. this.modelId = code;
  313. this.showModel = true;
  314. },
  315. },
  316. };
  317. </script>
  318. <style lang="scss" scoped>
  319. </style>