ShipmentCheckModal.vue 4.56 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" :model="model" :rules="validatorRules">-->
    <!--        <a-row>-->
    <!--          <a-col :span="24">-->
    <!--            <a-form-model-item label="出库口" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="outPortCode">-->
    <!--              <a-select-->
    <!--                show-search-->
    <!--                placeholder="请选择出库口"-->
    <!--                option-filter-prop="children"-->
    <!--                v-model="model.outPortCode"-->
    <!--              >-->
    <!--                <a-select-option v-for="item in portList" :key="item.name" :value="item.code">-->
    <!--                  {{ item.name }}-->
    <!--                </a-select-option>-->
    <!--              </a-select>-->
    <!--            </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 placeholder="" v-model="record.shipmentQty" :value="text"/>
      </span>


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

    </a-table>
  </j-modal>
</template>

<script>
import {shipmentCheck} from '@/api/api'
import {getAction} from "@api/manage";

export default {
  name: 'ShipmentCheckModal',
  components: {},
  data() {
    return {
      title: '操作',
      width: 800,
      portList: [],
      inventoryDetailList: [],
      dataSource: [],
      querySource: {},
      visible: false,
      model: {},
      labelCol: {
        xs: {span: 24},
        sm: {span: 5}
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16}
      },
      columns: [
        {
          title: '容器编码',
          dataIndex: 'containerCode',
          align: 'center',
        },
        {
          title: '物料编码',
          dataIndex: 'materialCode',
          align: 'center',
          width: 124
        },
        {
          title: '物料名称',
          dataIndex: 'materialName',
          align: 'center',
          width: 96
        },
        {
          title: '库存状态',
          align: 'center',
          dataIndex: 'inventoryStatus_dictText',
          scopedSlots: {customRender: 'inventoryStatus_dictText'}
        },
        {
          title: '批次',
          dataIndex: 'batch',
          align: 'center'
        },
        {
          title: '出库数量',
          dataIndex: 'qty',
          align: 'center',
          width: 80
        },
        {
          title: '复核数量',
          dataIndex: 'shipmentQty',
          align: 'center',
          key: 'action',
          scopedSlots: {customRender: 'action'}
        },
      ],
      url: {
        pageByMainIds: "/shipment/shipmentContainerAdvice/queryByShipmentContainerId",
      },
      // 选择用户查询条件配置
      selectUserQueryConfig: [],
      confirmLoading: false,
      validatorRules: {
        outPortCode: [{required: true, message: '请选择出库口!'}]
      }
    }
  },
  created() {
    //备份model原始值
    this.modelDefault = JSON.parse(JSON.stringify(this.model))
  },
  methods: {
    add() {
      this.edit(this.modelDefault)
    },
    edit(record) {
      this.visible = true
      this.searchInventoryDetailList(record);
    },
    close() {
      this.$emit('close')
      this.visible = false
      this.$refs.form.clearValidate()
    },
    searchInventoryDetailList(record) {
      getAction(this.url.pageByMainIds, record).then((res) => {
        this.dataSource = res.result
        this.inventoryDetailList = res.result
      })
    },
    handleOk() {
      shipmentCheck(this.dataSource).then(res => {
        if (res.success) {
          this.$message.success(res.message)
          this.$emit('ok')
        } else {
          this.$message.error(res.message)
        }
      })
      this.$emit('ok', this.model.outPortCode)
      this.close()
    },
    handleCancel() {
      this.close()
    }
  }
}
</script>