123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- <template>
- <el-row class="addForm">
- <el-col :span="24">
- <el-form
- :model="tableForm"
- :rules="tableFormThis"
- ref="tableForm"
- :size="'mini'"
- class="demo-tableForm product_go"
- >
- <el-table :data="tableForm.product_go" border :size="'mini'" row-key="key">
- <template v-for="(item, index) in columns">
- <el-table-column
- :prop="item.prop"
- show-overflow-tooltip
- :label="item.label"
- :width="item.width"
- :min-width="item.minWidth"
- :key="item.prop + index"
- />
- </template>
- <el-table-column fixed="right" width="50">
- <template slot="header" slot-scope="scope">
- <!-- sitem.has_account + '' === '0' && -->
- <el-tooltip
- class="fr"
- style="margin: 3px 0 0 0"
- v-if="
- ((status + '' === '1' && powers.some((i) => i == '028')) ||
- (status + '' === '2' && powers.some((i) => i == '028'))) &&
- sitem &&
- ((
- (sitem.order_type + '' === '2' ||
- sitem.order_type + '' === '3' ||
- sitem.order_type + '' === '4')) ||
- sitem.order_type + '' === '1')
- "
- effect="dark"
- content="添加"
- placement="top"
- >
- <i
- class="el-icon-circle-plus-outline tb-icon"
- style="color: #6954f0"
- @click="openModal()"
- ></i>
- </el-tooltip>
- <span v-else>操作</span>
- </template>
- <template slot-scope="scope">
- <el-tooltip
- v-if="powers.some((i) => i == '007')"
- effect="dark"
- content="详情"
- placement="top"
- >
- <i
- class="el-icon-view tb-icon"
- @click="
- routeGoto('wsmInOrderDetail', {
- id: scope.row.wsm_in_code,
- })
- "
- ></i>
- </el-tooltip>
- </template>
- </el-table-column>
- </el-table>
- </el-form>
- <wsm-in-order-model
- :show-model="showModel"
- :sitem="modelSitem"
- @refresh="(showModel = false), $emit('refresh')"
- @cancel="showModel = false"
- />
- </el-col>
- </el-row>
- </template>
- <script>
- import asyncRequest from "@/apis/service/stock/allot/detail";
- import resToken from "@/mixins/resToken";
- import config from "./columns-table"; //表格列参数
- import wsmInOrderModel from "@/views/purchaseIn/wsmInOrder/components/wsm-in-order-model";
- export default {
- name: "allot",
- props: ["id", "sitem", "newTime"],
- mixins: [resToken],
- components: { wsmInOrderModel },
- computed: {
- powers() {
- const tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "purchaseOrderDetail"
- ) || {};
- const { action } = tran ?? {};
- return action ?? [];
- },
- },
- data() {
- return {
- showModel: false,
- isDetail: false,
- modelId: 0,
- options: [],
- status: "",
- loading: false,
- modelSitem: null,
- wsm_in_code: "",
- tableForm: {
- product_go: [], //出库商品
- },
- tableFormThis: config.tableFormThis,
- statusOptions: [
- {
- value: '1',
- label: '待库管验货'
- },
- {
- value: '2',
- label: '入库完成'
- }
- ],
- columns: config.columns,
- };
- },
- watch: {
- newTime: function (val) {
- if (val) {
- this.initForm();
- }
- },
- },
- mounted() {
- this.initForm();
- },
- methods: {
- async initForm() {
- this.loading = true;
- this.modelSitem = null;
- await this.resetForm();
- this.loading = false;
- },
- async resetForm() {
- // 重置
- await this.$nextTick(() => {
- if (this.$refs.tableForm) {
- this.$refs.tableForm.resetFields();
- this.$refs.tableForm.clearValidate();
- const { status, child } = this.sitem;
- this.status = status;
- this.tableForm.product_go = child || [];
- this.tableForm.product_go.forEach((e) => {
- e.sendtype_name =
- e.sendtype + '' === "1" ? "公司自提" : e.sendtype === "2" ? "供应商包邮" : "--";
- e.status_name =
- (this.statusOptions.find((item) => item.value == e.status) || {}).label ||
- "--";
- });
- }
- });
- },
- openModal() {
- this.modelSitem = this.sitem;
- this.showModel = true;
- },
- async submitForm() {
- if (this.loading) {
- return;
- }
- let good = [];
- this.loading = true;
- good = this.getGoodList();
- const model = {
- allot_code: this.sitem.allot_code,
- good: good,
- };
- let res = {};
- if (this.status == "3") {
- res = await asyncRequest.allotgetin(model);
- } else {
- res = await asyncRequest.allotvesio(model);
- }
- this.loading = false;
- if (res && res.code === 0) {
- this.$notify.success({
- title:
- this.status == "3" ? "入库方验货结果提交成功!" : "入库方验货审核结果提交成功",
- message: "",
- });
- this.$emit("refresh");
- } else if (res && res.code >= 100 && res.code <= 104) {
- await this.logout();
- } else {
- this.$message.warning(res.message);
- }
- },
- //提交表单前 商品信息list 汇总
- getGoodList() {
- let oldList = JSON.parse(JSON.stringify(this.tableForm.product_go)),
- resList = [];
- oldList.forEach((v1) => {
- let goodModel = {
- good_code: v1.type_code,
- usable_num: v1.usable_stock,
- error_num: v1.error_num,
- error_remark: v1.error_remark,
- error_code: v1.error_code,
- };
- if (this.status + '' === "4") {
- goodModel.stock_num = v1.stock_num;
- }
- resList.push(goodModel);
- });
- return resList;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .allot,
- .allotDetail {
- .label-title-model {
- line-height: 30px;
- width: 100%;
- color: #909399;
- font-weight: bold;
- font-size: 15px;
- padding-bottom: 12px;
- text-align: center;
- }
- .product_go {
- .el-form-item--mini.el-form-item {
- margin: 0 !important;
- .spscope {
- word-break: break-all !important;
- line-height: 23px !important;
- padding: 0 !important;
- margin: 0 !important;
- list-style: none !important;
- font-style: normal !important;
- text-decoration: none !important;
- border: none !important;
- display: inline-block !important;
- font-weight: 500 !important;
- font-family: "Microsoft Yahei", sans-serif !important;
- -webkit-tap-highlight-color: transparent !important;
- -webkit-font-smoothing: antialiased !important;
- color: #606266 !important;
- font-size: 12px !important;
- }
- }
- }
- }
- </style>
|