123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- <template>
- <a-card :bordered="false" v-show="visible" class="card" :title="modalTitle">
- <a-form :form="form">
- <a-form-item v-show="false" >
- <a-input v-decorator="['id']" type="hidden"/>
- <a-input v-decorator="['storeId']" type="hidden"/>
- <a-input v-decorator="['pickId']" type="hidden"/>
- <a-input v-decorator="['isOut']" type="hidden"/>
- </a-form-item>
- <a-row :gutter="24">
- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="出库单号"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-input
- disabled
- v-decorator="['outNo', {rules: [{required: false, message: '出库单号不能为空'}]}]" />
- </a-form-item>
- </a-col>
- <!-- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="领用/退货单号"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-input
- disabled
- style="width: 70%"
- v-decorator="['pickNo']"/>
- <a-button type="primary" style="width: 30%" @click="handleSparePickFormSelect">选择</a-button>
- </a-form-item>
- </a-col>
- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="仓库"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-tree-select
- style="width: 100%"
- @change="handleStoreChange"
- :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
- :treeData="storeTreeDate"
- :treeNodeFilterProp="'title'"
- :showSearch="true"
- v-decorator="['storeId', {rules: [{required: false, message: '仓库不能为空'}]}]"
- placeholder="请选择"
- >
- </a-tree-select>
- </a-form-item>
- </a-col>-->
- <!-- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="出库类型"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-select @change="typeChange" v-decorator="['type', {initValue: 1, rules: [{required: true, message: '出库类型不能为空'}]}]" placeholder="请选择">
- <a-select-option
- v-for="(label,value) in typeMap"
- :key="value"
- :label="label"
- :value="parseInt(value)">{{ label }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>-->
- <!-- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="操作人"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-select v-decorator="['userId']" placeholder="请选择">
- <a-select-option
- v-for="({userId, realName}) in userList"
- :key="userId"
- :label="realName"
- :value="userId">{{ realName }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>-->
- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="操作时间"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-date-picker
- style="width: 100%"
- :format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
- v-decorator="['userTime', {rules: [{required: true, message: '操作时间不能为空'}]}]" />
- </a-form-item>
- </a-col>
- <a-col :lg="12" :md="24" :sm="24">
- <a-form-item
- label="备注"
- :labelCol="BaseTool.Constant.labelCol"
- :wrapperCol="BaseTool.Constant.wrapperCol"
- >
- <a-textarea
- :rows="4"
- v-decorator="['remark', {rules: [{required: false, message: '备注不能为空'}]}]"/>
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- <title-divider title="备件明细" width="90px"></title-divider>
- <div class="table-operator" style="margin-bottom: 8px;">
- <a-button size="small" type="primary" @click="handleSpareStoreSelect">
- <a-icon type="plus"/>
- 添加
- </a-button>
- <a-button class="margin-left8" size="small" type="danger" @click="handleDel">
- <a-icon type="delete"/>
- 删除
- </a-button>
- </div>
- <a-table
- bordered
- :data-source="data"
- :columns="columns"
- tableLayout="auto"
- rowKey="id + cbatch"
- :row-selection="rowSelection">
- <template slot="num" slot-scope="text, record">
- <div class="editable-cell-input-wrapper">
- <a-input :value="text" :id="record.cbatch + ',num'" @change="$event => onQuantityChange($event, record.cbatch, 'num')" />
- </div>
- </template>
- <span slot="action" slot-scope="record">
- <template>
- <a @click="handleBaseFormForModifySelect(record)">修改</a>
- <a-divider type="vertical" />
- <a-popconfirm title="是否要删除该条数据?" @confirm="handleDelOne(record)">
- <a>删除</a>
- </a-popconfirm>
- </template>
- </span>
- </a-table>
- <a-row :gutter="48" >
- <a-col :md="48" :sm="48">
- <span class="table-page-search-submitButtons" style="float: right;margin-top: 10px">
- <a-button type="primary" @click="save()">提交</a-button>
- <a-button style="margin-left: 8px" @click="handleCancel()">返回</a-button>
- </span>
- </a-col>
- </a-row>
- <spare-pick-form-select-modal ref="sparePickFormSelectModal" @selected="handleSparePickFormSelected"/>
- <spare-back-form-select-modal ref="spareBackFormSelectModal" @selected="handleSpareBackFormSelected"/>
- <spare-store-select-modal ref="spareStoreSelectModal" @selected="handleSpareStoreSelected"/>
- <detail-base-form ref="detailBaseForm" @selected="handleDetailSelected"/>
- <store-select-modal ref="storeSelectModal" @selected="handleStoreSelected"/>
- <base-form-for-modify ref="baseFormForModify" @selected="handleBaseFormForModifySelected"/>
- </a-card>
- </template>
- <script>
- import pick from 'lodash.pick'
- import { addOutStoreFormYY, updateOutStoreFormYY } from '@/api/store/outstoreform'
- import SparePickFormSelectModal from '@/views/store/sparepickform/modules/SparePickFormSelectModal'
- import SpareBackFormSelectModal from '@/views/store/sparebackform/modules/SpareBackFormSelectModal'
- import DetailBaseForm from './DetailBaseForm'
- import StoreSelectModal from '@/views/store/store/modules/StoreSelectModal'
- import SpareStoreSelectModal from '@/views/store/sparestore/modules/SpareStoreSelectModalYY'
- import BaseFormForModify from '@/views/store/outstoredetail/modules/BaseFormForModify'
- import BaseTool from '@/utils/tool'
- import { queryUsersByParentDeptNatureAll } from '@/api/upms/user'
- import { fetchStoreTree } from '@/api/store/store'
- export default {
- name: 'BaseOutStoreFormYY',
- components: {
- DetailBaseForm,
- SparePickFormSelectModal,
- SpareBackFormSelectModal,
- SpareStoreSelectModal,
- StoreSelectModal,
- BaseFormForModify
- },
- data () {
- return {
- confirmLoading: false,
- modalTitle: null,
- form: this.$form.createForm(this),
- visible: false,
- maskClosable: false,
- type: 1,
- storeId: null,
- // 下拉框map
- typeMap: {},
- // 表头
- columns: [
- {
- title: '序号',
- dataIndex: 'index',
- customRender: (text, record, index) => {
- return index + 1
- }
- },
- {
- title: '名称',
- dataIndex: 'spareName'
- },
- {
- title: '编号',
- dataIndex: 'no'
- },
- {
- title: '规格',
- dataIndex: 'ggxh'
- },
- {
- title: '批次',
- dataIndex: 'cbatch'
- },
- {
- title: '数量',
- dataIndex: 'num',
- width: 150,
- scopedSlots: { customRender: 'num' }
- },
- {
- title: '仓库',
- dataIndex: 'storeName'
- },
- {
- title: '操作',
- key: 'action',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
- data: [],
- storeTreeDate: [],
- userList: {},
- user: this.$store.getters.userInfo,
- selectedRowKeys: [],
- selectedRows: [],
- options: {
- rowSelection: {
- selectedRowKeys: this.selectedRowKeys
- }
- },
- rowSelection: {
- onChange: (selectedRowKeys, selectedRows) => {
- this.selectedRowKeys = selectedRowKeys
- this.selectedRows = selectedRows
- }
- }
- }
- },
- props: {
- },
- created () {
- // 下拉框map
- this.typeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.OUT_STORE_FORM_TYPE)
- },
- methods: {
- base (record) {
- this.visible = true
- const params = { deptId: this.user.companyId }
- params.nature = this.DictCache.VALUE.SYS_DEPT_NATURE.FEN_GONG_SI
- queryUsersByParentDeptNatureAll(params).then(res => {
- this.userList = res.data
- })
- fetchStoreTree().then(res => {
- this.storeTreeDate = res.data
- })
- // 如果是空标识添加
- if (this.BaseTool.Object.isBlank(record.id)) {
- this.modalTitle = '添加'
- this.data = []
- const { form: { setFieldsValue } } = this
- // 日期处理
- this.$nextTick(() => {
- setFieldsValue(Object.assign(pick(record, [
- 'isOut'
- ])))
- })
- return
- }
- this.modalTitle = '编辑'
- const { form: { setFieldsValue } } = this
- // 日期处理
- this.storeId = record.storeId
- this.$nextTick(() => {
- setFieldsValue(Object.assign(pick(record, [
- 'id',
- 'outNo',
- 'userId',
- 'userTime',
- 'storeId',
- 'storeName',
- 'pickId',
- 'pickNo',
- 'type',
- 'remark'
- ])))
- })
- this.data = record.detailList
- },
- save () {
- const { form: { validateFieldsAndScroll } } = this
- this.confirmLoading = true
- validateFieldsAndScroll((errors, values) => {
- if (errors) {
- this.confirmLoading = false
- return
- }
- if (this.data.length === 0) {
- this.$message.error('请添加出库详情')
- this.confirmLoading = false
- return
- }
- values.detailList = this.data
- values.userTime = BaseTool.Date.formatter(values.userTime, BaseTool.Date.PICKER_NORM_DATE_PATTERN)
- // 日期处理
- if (this.BaseTool.String.isBlank(values.id)) {
- addOutStoreFormYY(values)
- .then(() => {
- this.handleCancel(values)
- }).catch(() => {
- this.confirmLoading = false
- })
- } else {
- updateOutStoreFormYY(values)
- .then(() => {
- this.handleCancel(values)
- }).catch(() => {
- this.confirmLoading = false
- })
- }
- })
- },
- handleCancel (values) {
- this.visible = false
- this.confirmLoading = false
- this.form.resetFields()
- if (this.BaseTool.Object.isNotBlank(values)) {
- this.$emit('ok', values)
- } else {
- this.$emit('ok')
- }
- },
- typeChange (values) {
- this.type = values
- },
- handleStoreSelect () {
- this.$refs.storeSelectModal.base({}, { filter: -1 })
- },
- handleStoreSelected (record, keys, rows) {
- // 重新选择了仓库,则明细需要全部清空
- this.data = []
- const [ key ] = keys
- const [ row ] = rows
- const { form: { setFieldsValue } } = this
- this.storeId = key
- // 日期处理
- this.$nextTick(() => {
- setFieldsValue(Object.assign({
- 'storeId': key,
- 'storeName': row.name
- }))
- })
- },
- handleSparePickFormSelect () {
- if (this.type === 1) {
- this.$refs.sparePickFormSelectModal.base()
- } else {
- this.$refs.spareBackFormSelectModal.base()
- }
- },
- handleSparePickFormSelected (record, keys, rows) {
- const [ key ] = keys
- const [ row ] = rows
- const { form: { setFieldsValue } } = this
- // 日期处理
- setFieldsValue(Object.assign({
- 'pickId': key,
- 'pickNo': row.pickNo
- }))
- },
- handleSpareBackFormSelected (record, keys, rows) {
- const [ key ] = keys
- const [ row ] = rows
- const { form: { setFieldsValue } } = this
- // 日期处理
- setFieldsValue(Object.assign({
- 'pickId': key,
- 'pickNo': row.pickNo
- }))
- },
- handleDetailSelect () {
- if (this.storeId == null) {
- this.$message.error('请先选择仓库')
- return
- }
- this.$refs.detailBaseForm.base({ storeId: this.storeId })
- },
- handleDetailSelected (record) {
- const { data } = this
- data.push(record)
- },
- handleDel (id) {
- const data = [...this.data]
- if (this.selectedRowKeys.length === 0) {
- this.$message.error('请至少选择一条数据')
- return
- }
- this.data = data.filter(item => !this.selectedRowKeys.includes(item.id))
- },
- handleDelOne (record) {
- const data = [...this.data]
- this.data = data.filter(item => record.cbatch !== item.cbatch)
- },
- handleSpareStoreSelect () {
- this.$refs.spareStoreSelectModal.base()
- },
- handleSpareStoreSelected (record, keys, rows) {
- const { data } = this
- for (let i = 0; i < rows.length; i++) {
- let find = false
- for (let j = 0; j < data.length; j++) {
- if (rows[i].cbatch === data[j].cbatch) {
- find = true
- break
- }
- }
- if (!find) {
- const selectData = rows[i]
- selectData.num = 1
- data.push(selectData)
- }
- }
- },
- handleStoreChange (value) {
- this.storeId = value
- },
- handleBaseFormForModifySelect (record) {
- this.$refs.baseFormForModify.base(record)
- },
- handleBaseFormForModifySelected (values) {
- console.log('values' + values.id)
- const { data } = this
- for (let j = 0; j < data.length; j++) {
- if (values.id === data[j].id) {
- data[j].num = values.num
- data[j].totalPrice = values.totalPrice
- break
- }
- }
- },
- onQuantityChange (e, cbatch, attr) {
- const value = e.target.value
- console.log(value)
- if (value !== 0 && !value) {
- return
- }
- const data = [...this.data]
- const target = data.find(item => item.cbatch === cbatch)
- console.log('target: ' + target)
- if (target) {
- target[attr] = value
- this.data = data
- }
- },
- onTotalPriceChange (e, id, attr) {
- const value = e.target.value
- console.log(value)
- if (value !== 0 && !value) {
- return
- }
- const data = [...this.data]
- const target = data.find(item => item.id === id)
- console.log('target: ' + target)
- if (target) {
- target[attr] = value
- this.data = data
- }
- }
- }
- }
- </script>
|