ReceiptModal.vue 6.53 KB
<template>
  <j-modal
    :title="title"
    :width="width"
    :visible="visible"
    :confirmLoading="confirmLoading"
    switchFullscreen
    @ok="handleOk"
    @cancel="handleCancel"
    :cancelText="$t('button.close')"
  >
    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form" :model="model" :rules="validatorRules">
        <a-row>
          <a-col :span="24">
            <a-form-model-item :label="$t('config.containerCode')" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="containerCode">
              <a-input ref="containerCode" v-model="model.containerCode" :placeholder="$t('config.inputContainerCode')" style="width: 100%"/>
            </a-form-model-item>
          </a-col>
        </a-row>
      </a-form-model>
    </a-spin>
    <a-table
      ref="table"
      rowKey="id"
      size="middle"
      :columns="columns"
      :dataSource="dataSource"
      :pagination="false">
      <span slot="action" slot-scope="text, record">
        <a-input-number :min="0" placeholder="" v-model="record.taskQty" :value="text"/>
      </span>

      <span slot="action2" slot-scope="text, record">
        <a-button type="primary" @click="selectContainer(record)">{{ $t('button.selectContainer') }}</a-button>
      </span>

      <span slot="inventoryStatus" slot-scope="inventoryStatus">
        <a-tag :key="inventoryStatus" :color="getStatusColor(inventoryStatus)">
          {{ inventoryStatus }}
        </a-tag>
      </span>

    </a-table>
    <select-inv-container-header ref="selectContainerForm" v-on:getContainer="getContainerCode"></select-inv-container-header>
  </j-modal>

</template>

<script>
import {httpAction} from '@/api/manage'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import {ajaxGetDictItems, listReceiveByReceiptId, translateResultMessage} from '@/api/api'
import SelectInvContainerHeader from "./SelectInvContainerHeader";

export default {
  name: 'ReceiptModal',
  components: {SelectInvContainerHeader},
  mixins: [JeecgListMixin],
  props: {
    mainId: {
      type: String,
      required: false,
      default: ''
    }
  },
  data() {
    return {
      title: this.$t('system.options'),
      width: 1000,
      visible: false,
      querySource: {},
      invStatus: [],
      model: {},
      labelCol: {
        xs: {span: 24},
        sm: {span: 3}
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 6}
      },
      columns: [
        {
          title: this.$t('config.materialCode'),
          dataIndex: 'materialCode',
          align: 'center',
          width: 124
        },
        {
          title: this.$t('config.materialName'),
          dataIndex: 'materialName',
          align: 'center',
          width: 124
        },
        {
          title: this.$t('receipt.inventoryStatus'),
          dataIndex: 'inventoryStatus_dictText' + this.$ls.get('language'),
          align: 'center',
          width: 124,
          scopedSlots: {customRender: 'inventoryStatus'}
        },
        {
          title: this.$t('receipt.batch'),
          dataIndex: 'batch',
          align: 'center'
        },
        {
          title: this.$t('receipt.receivableQty'),
          dataIndex: 'qty',
          align: 'center',
        },
        {
          title: this.$t('receipt.groupingQty'),
          dataIndex: 'action',
          align: 'center',
          key: 'action',
          scopedSlots: {customRender: 'action'}
        },
        // {
        //   title: this.$t('system.options'),
        //   dataIndex: 'action2',
        //   align: "center",
        //   width: 147,
        //   scopedSlots: {customRender: 'action2'}
        // }
      ],
      confirmLoading: false,
      validatorRules: {
        containerCode: [{required: true, message: this.$t('task.inputContainerCode')}]
      },
      dictOptions: {},
      superFieldList: [],
      url: {
        add: '/receipt/receiveHeader/receiving',
        edit: '/receipt/receiptHeader/editReceiptDetail'
      }
    }
  },
  created() {
    //备份model原始值
    // this.searchReceive()
    this.getSuperFieldList()
    // this.modelDefault = JSON.parse(JSON.stringify(this.model))
    this.loadFrom();
  },
  methods: {
    loadData(arg) {
    },
    loadFrom() {
      ajaxGetDictItems('inventory_status').then((res) => {
        if (res.success) {
          this.invStatus = res.result
        }
      })
    },
    getContainerCode(e) {
      this.$nextTick(function () {
        let record = {containerCode: e}
        this.model = Object.assign({}, record)
      })
    },
    edit(record) {
      this.model = Object.assign({}, record)
      this.visible = true
      this.searchReceive()
    },
    // show(record) {
    //   this.model = Object.assign({}, record)
    //   this.visible = true
    // },
    selectContainer(record) {
      this.$refs.selectContainerForm.edit(record);
    },
    close() {
      this.$emit('close')
      this.visible = false
      this.$refs.form.clearValidate()
    },
    searchReceive() {
      const that = this
      that.querySource.receiptCode = that.model.code
      listReceiveByReceiptId(that.querySource).then(res => {
        that.dataSource = res.result.records;
        this.ipagination.total = res.result.total;
      })
    },
    initDictConfig() {
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({type: 'string', value: 'inventoryStatus', text: this.$t('receipt.inventoryStatus'), dictCode: 'inventory_status'})
      this.superFieldList = fieldList
    },
    handleOk() {
      const that = this
      // 触发表单验证
      this.$refs.form.validate(valid => {
        if (valid) {
          that.confirmLoading = true
          let httpurl = ''
          let method = ''
          httpurl += this.url.add
          method = 'post'
          if (this.dataSource[0] == null) {
            that.confirmLoading = false
            that.$message.warning(this.$t('receipt.inboundNoDetails'))
            return
          }
          this.dataSource[0].containerCode = this.model.containerCode
          httpAction(httpurl, this.dataSource, method)
            .then(res => {
              if (res.success) {
                that.$message.success(translateResultMessage(res, res.message))
                that.$emit('ok')
                that.close()
              } else {
                that.$message.warning(translateResultMessage(res, res.message))
              }
            })
            .finally(() => {
              that.confirmLoading = false
            })
        } else {
          return false
        }
      })
    },
    handleCancel() {
      this.close()
    }
  }
}
</script>