ReceiptModal.vue 7.47 KB
<template>
  <j-modal
    :title="title"
    :width="width"
    :visible="visible"
    :confirmLoading="confirmLoading"
    switchFullscreen
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭"
  >
    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form">
        <a-row>
          <a-col :span="24">
            <a-form-model-item label="容器编码" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="containerCode">
              <a-input ref="containerCode" v-model="containerCode" placeholder="请输入容器编码" 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="taskQty" slot-scope="text, record">
        <a-input-number placeholder="" v-model="record.taskQty" :value="text"/>
      </span>

      <span slot="sn" slot-scope="text, record">
        <a-input placeholder="请输入序列号" v-model="record.sn" @change="snChangeEvent(record)" :value="text"/>
      </span>

      <span slot="action2" slot-scope="text, record">
         <a-button type="primary" @click="selectContainer(record)">选容器</a-button>
      </span>

      <span slot="inventoryStatus" slot-scope="inventoryStatus">
        <a-tag :key="inventoryStatus" :color="getStatusColor(inventoryStatus)">
            {{ solutionInvStatus(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 {getAction, postAction} from '@/api/manage'
import {ajaxGetDictItems, listReceiveByReceiptId} from '@/api/api'
import {simpleDebounce} from '@/utils/util'
import SelectInvContainerHeader from "./SelectInvContainerHeader";

export default {
  name: 'ReceiptModal',
  components: {SelectInvContainerHeader},
  data() {
    return {
      title: '操作',
      width: 1100,
      visible: false,
      querySource: {},
      dataSource: [],
      invStatus: [],
      model: {},
      containerCode: null,
      labelCol: {
        xs: {span: 24},
        sm: {span: 3}
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 6}
      },
      columns: [
        {
          title: '物料编码',
          dataIndex: 'materialCode',
          align: 'center',
          width: 124
        },
        {
          title: '物料名称',
          dataIndex: 'materialName',
          align: 'center'
        },
        {
          title: '状态',
          dataIndex: 'inventoryStatus',
          align: 'center',
          width: 80,
          scopedSlots: {customRender: 'inventoryStatus'}
        },
        {
          title: '批次',
          dataIndex: 'batch',
          align: 'center',
          width: 80
        },
        {
          title: '可收数量',
          dataIndex: 'qty',
          align: 'center',
          width: 80
        },
        {
          title: '组盘数量',
          dataIndex: 'taskQty',
          align: 'center',
          scopedSlots: {customRender: 'taskQty'},
          width: 80
        },
        {
          title: '序列号',
          dataIndex: 'sn',
          align: 'center',
          width: 200,
          scopedSlots: {customRender: 'sn'}
        },
        {
          title: '操作',
          dataIndex: 'action2',
          align: "center",
          width: 100,
          scopedSlots: {customRender: 'action2'}
        }
      ],
      confirmLoading: false,
      superFieldList: [],
      url: {
        add: '/receipt/receiveHeader/receiving',
        edit: '/receipt/receiptHeader/editReceiptDetail',
        getMaterialSnInfoBySn: '/config/materialSn/getBySn'
      }
    }
  },
  watch: {},
  created() {
    //备份model原始值
    this.getSuperFieldList()
    this.loadFrom();
  },
  methods: {
    snChangeEvent: simpleDebounce(function (record) {
      if (record.sn == null || record.sn === '') {
        return
      }
      let that = this;
      getAction(that.url.getMaterialSnInfoBySn, {sn: record.sn})
        .then(res => {
          if (res.success) {
            let result = res.result
            if (result.code !== record.materialCode) {
              that.$message.warning("该序列号对应的入库物料 " + result.code + " 与单据明细物料 " + record.materialCode + " 不一致")
              record.sn = null;
              return;
            }
            record.taskQty = result.qty;
            record.sn = result.sn;
            if (result.lastContainer) {
              //that.containerCode = result.lastContainer;
            }
            that.$message.success(res.message);
          } else {
            that.$message.warning(res.message);
            record.sn = null;
          }
        })
        .finally(() => {
          that.confirmLoading = false
        })
    }, 500),
    loadFrom() {
      ajaxGetDictItems('inventory_status').then((res) => {
        if (res.success) {
          this.invStatus = res.result
        }
      })
    },
    getStatusColor(status) {
      const colors = {
        'good': 'green',
        'defective': 'red',
        'discussed': 'grey',
        'scrap': 'purple',
        'pendingInspection': 'orange',
        default: 'blue'
      };
      return colors[status] || colors.default;
    },
    getContainerCode(e) {
      this.$nextTick(function () {
        let record = {containerCode: e}
        this.model = {...record}
      })
    },
    solutionInvStatus(value) {
      let actions = []
      Object.keys(this.invStatus).some(key => {
        if (this.invStatus[key].value === '' + value) {
          actions.push(this.invStatus[key].text)
          return true
        }
      })
      return actions.join('')
    },
    edit(record) {
      this.model = {...record}
      this.visible = true
      this.searchReceive()
    },
    selectContainer(record) {
      this.$refs.selectContainerForm.edit(record);
    },
    close() {
      this.$emit('close')
      this.visible = false
      this.$refs.form.clearValidate();
      this.containerCode = null;
    },
    searchReceive() {
      const that = this
      that.querySource.receiptCode = that.model.code
      listReceiveByReceiptId(that.querySource).then(res => {
        that.dataSource = res.result
      })
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({type: 'string', value: 'inventoryStatus', text: '库存状态', dictCode: 'inventory_status'})
      this.superFieldList = fieldList
    },
    handleOk() {
      const that = this
      that.confirmLoading = true
      if (this.dataSource[0] == null) {
        that.confirmLoading = false
        that.$message.warning('入库单没有详情')
        return
      }
      if (this.containerCode == null || this.containerCode === '') {
        that.confirmLoading = false
        that.$message.warning('容器编码为空');
        return;
      }
      this.dataSource.forEach(data => {
        data.containerCode = this.containerCode
      })
      postAction(this.url.add, this.dataSource)
        .then(res => {
          if (res.success) {
            that.$message.success(res.message)
            that.$emit('ok')
            //that.close()
            this.searchReceive();
          } else {
            that.$message.warning(res.message)
          }
        })
        .finally(() => {
          that.confirmLoading = false
        })
    },
    handleCancel() {
      this.close()
    }
  }
}
</script>