You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

205 lines
7.1 KiB

3 years ago
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form :form="form" slot="detail">
<a-row>
<a-col :span="6">
<a-form-item label="物料组" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['itemGroup']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="物料" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['item']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="物料描述" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['itemDescription']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="仓储地点_id" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['unitWasteWarehouseCodeId']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="存储仓位" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['freightSpace']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="生产时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择生产时间" v-decorator="['productionTime']" :trigger-change="true" style="width: 100%" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="保质期" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择保质期" v-decorator="['expirationDate']" :trigger-change="true" style="width: 100%" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="批次" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['batch']" dict="" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择入库时间" v-decorator="['inboundTime']" :trigger-change="true" style="width: 100%" />
</a-form-item>
</a-col>
<a-col :span="6">
<a-form-item label="入库人" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-search-select-tag v-decorator="['librarySign']" dict="" />
</a-form-item>
</a-col>
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
<a-button @click="submitForm"> </a-button>
</a-col>
</a-row>
</a-form>
</j-form-container>
</a-spin>
</template>
<script>
import { httpAction, getAction } from '@/api/manage'
import pick from 'lodash.pick'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
import JDate from '@/components/jeecg/JDate'
import JSearchSelectTag from '@/components/dict/JSearchSelectTag'
export default {
name: 'ProcessSuppliesStrongerForm',
components: {
JFormContainer,
JDate,
JSearchSelectTag,
},
props: {
//流程表单data
formData: {
type: Object,
default: ()=>{},
required: false
},
//表单模式:true流程表单 false普通表单
formBpm: {
type: Boolean,
default: false,
required: false
},
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data () {
return {
form: this.$form.createForm(this),
model: {},
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
confirmLoading: false,
validatorRules: {
},
url: {
add: "/suppliesstronger/processSuppliesStronger/add",
edit: "/suppliesstronger/processSuppliesStronger/edit",
queryById: "/suppliesstronger/processSuppliesStronger/queryById"
}
}
},
computed: {
formDisabled(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return false
}
return true
}
return this.disabled
},
showFlowSubmitButton(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return true
}
}
return false
}
},
created () {
3 years ago
//如果流程中表单,则需要加载流程表单data
3 years ago
this.showFlowData();
},
methods: {
add () {
this.edit({});
},
edit (record) {
this.form.resetFields();
this.model = Object.assign({}, record);
this.visible = true;
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.model,'processId','supplierId','supplierDescription','itemGroup','item','itemDescription','unitMeasurement','amount','price','rates','unitWasteWarehouseCodeId','freightSpace','productionTime','expirationDate','batch','arrivalNotice','inboundTime','librarySign','accountingAttributes'))
})
},
//渲染流程表单数据
showFlowData(){
if(this.formBpm === true){
let params = {id:this.formData.dataId};
getAction(this.url.queryById,params).then((res)=>{
if(res.success){
this.edit (res.result);
}
});
}
},
submitForm () {
const that = this;
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
that.confirmLoading = true;
let httpurl = '';
let method = '';
if(!this.model.id){
httpurl+=this.url.add;
method = 'post';
}else{
httpurl+=this.url.edit;
method = 'put';
}
let formData = Object.assign(this.model, values);
console.log("表单提交数据",formData)
httpAction(httpurl,formData,method).then((res)=>{
if(res.success){
that.$message.success(res.message);
that.$emit('ok');
}else{
that.$message.warning(res.message);
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
},
popupCallback(row){
this.form.setFieldsValue(pick(row,'processId','supplierId','supplierDescription','itemGroup','item','itemDescription','unitMeasurement','amount','price','rates','unitWasteWarehouseCodeId','freightSpace','productionTime','expirationDate','batch','arrivalNotice','inboundTime','librarySign','accountingAttributes'))
},
}
}
</script>