Browse Source

采购回显

dev
0.0 2 years ago
parent
commit
32ce7531b7
  1. 913
      src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue
  2. 974
      src/views/burst/form/purchase/ProcessIndustrialStorageForm.vue

913
src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue

@ -1,33 +1,34 @@
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<!-- 主表单区域 -->
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
<a-row>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planType">
<a-input-number v-model="model.planType" placeholder="请输入计划采购类型" style="width: 100%" />
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起公司" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="company">
<a-input v-model="model.company" placeholder="请输入流程发起公司" ></a-input>
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起部门" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="departId">
<a-input v-model="model.departId" placeholder="请输入流程发起部门" ></a-input>
</a-form-model-item>
</a-col>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<!-- 主表单区域 -->
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
<a-row>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="planType">
<j-select-user-by-dep v-model="model.planType" disabled />
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起公司" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="company">
<j-select-company v-model="model.company" multi disabled />
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="流程发起部门" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="departId">
<j-select-depart v-model="model.departId" multi disabled />
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="文件" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="fileId">
<a-input v-model="model.fileId" placeholder="请输入文件" ></a-input>
<a-input v-model="model.fileId" placeholder="请输入文件"></a-input>
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="type">
<!-- <a-input v-model="model.type" placeholder="请输入物资类型"></a-input>-->
<!-- <a-input v-model="model.type" placeholder="请输入物资类型" ></a-input>-->
<j-dict-select-tag type="list" v-model="form.type"
dictCode="explosive_type"
@ -36,465 +37,491 @@
</a-col>
</a-row>
</a-form-model>
</j-form-container>
<!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs">
<a-tab-pane tab="民爆物资报废详情表" :key="refKeys[0]" :forceRender="true">
<j-editable-table
:ref="refKeys[0]"
:loading="processIndustrialScrapMaterialTable.loading"
:columns="processIndustrialScrapMaterialTable.columns"
:dataSource="processIndustrialScrapMaterialTable.dataSource"
:maxHeight="300"
:disabled="formDisabled"
:rowNumber="true"
:rowSelection="true"
:actionButton="true"/>
</a-tab-pane>
</a-tabs>
<div class="div_process">
<div v-if="isGetOneAndLast">
<a-form-item v-if="!disabled" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" :disabled="disabled||btndisabled" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" :disabled="disabled||btndisabled" @click="applySubmit">提交申请
</a-button>
<a-button style="margin-left: 8px" :disabled="disabled" @click="close">取消</a-button>
</a-form-item>
<a-form-item v-if="task" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" @click="passTask">通过</a-button>
<!-- <a-button type="primary" @click="ewrold">下载</a-button>-->
<a-button style="margin-left: 8px" @click="backTask">驳回</a-button>
</a-form-item>
</div>
<a-form-item v-if="isPlanType" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" @click="saveAndpassTask">通过</a-button>
<!-- <a-button type="primary" @click="ewrold">下载</a-button>-->
<a-button style="margin-left: 8px" @click="backTask">驳回</a-button>
</a-form-item>
</div>
</a-spin>
</j-form-container>
<!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs">
<a-tab-pane tab="民爆物资报废详情表" :key="refKeys[0]" :forceRender="true">
<j-editable-table
:ref="refKeys[0]"
:loading="processIndustrialScrapMaterialTable.loading"
:columns="processIndustrialScrapMaterialTable.columns"
:dataSource="processIndustrialScrapMaterialTable.dataSource"
:maxHeight="300"
:disabled="formDisabled"
:rowNumber="true"
:rowSelection="true"
:actionButton="true" />
</a-tab-pane>
</a-tabs>
<div class="div_process">
<div v-if="isGetOneAndLast">
<a-form-item v-if="!disabled" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" :disabled="disabled||btndisabled" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" :disabled="disabled||btndisabled" @click="applySubmit">提交申请
</a-button>
<a-button style="margin-left: 8px" :disabled="disabled" @click="close">取消</a-button>
</a-form-item>
<a-form-item v-if="task" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" @click="passTask">通过</a-button>
<!-- <a-button type="primary" @click="ewrold">下载</a-button>-->
<a-button style="margin-left: 8px" @click="backTask">驳回</a-button>
</a-form-item>
</div>
<a-form-item v-if="isPlanType" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" @click="saveAndpassTask">通过</a-button>
<!-- <a-button type="primary" @click="ewrold">下载</a-button>-->
<a-button style="margin-left: 8px" @click="backTask">驳回</a-button>
</a-form-item>
</div>
</a-spin>
</template>
<script>
import { FormTypes, getRefPromise, VALIDATE_NO_PASSED, validateFormAndTables } from '@/utils/JEditableTableUtil'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import { validateDuplicateValue } from '@/utils/util'
import { JEditableTableMixin } from '@/mixins/JEditableTableMixin'
import JFormContainer from '@/components/jeecg/JFormContainer'
import JDate from '@/components/jeecg/JDate'
import JUpload from '@/components/jeecg/JUpload'
import JSelectDepart from '@/components/jeecgbiz/JSelectDepart'
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep'
import JDictSelectTag from '@/components/dict/JDictSelectTag'
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
import { validateDuplicateValue } from '@/utils/util'
import { getStringArry } from '@api/manage'
export default {
name: 'ProcessIndustrialScrapsForm',
mixins: [JEditableTableMixin],
components: {
},
data() {
return {
isGetOneAndLast: true, //
btndisabled: false,
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
model:{
},
validatorRules: {
departId: [
{ required: true, message: '请输入流程发起部门!'},
],
type: [
{ required: true, message: '请输入类型!'},
],
},
//
addDefaultRowNum: 1,
refKeys: ['processIndustrialScrapMaterial', ],
tableKeys:['processIndustrialScrapMaterial', ],
activeKey: 'processIndustrialScrapMaterial',
//
processIndustrialScrapMaterialTable: {
loading: false,
dataSource: [],
columns: [
{
title: '民爆报废ID',
key: 'industrialScrapId',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '请求数量',
key: 'quantity',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '实际数量',
key: 'amount',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '单位',
key: 'unit',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '民爆物资id',
key: 'industrialId',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '民爆物资名称',
key: 'industrialName',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '报废原因',
key: 'scrapCause',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '删除标识',
key: 'delFlag',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '报废金额',
key: 'money',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '备注',
key: 'remarks',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
]
},
url: {
add: "/burst/processIndustrialScraps/add",
edit: "/burst/processIndustrialScraps/edit",
processIndustrialScrapMaterial: {
list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId'
export default {
name: 'ProcessIndustrialScrapsForm',
mixins: [JEditableTableMixin],
components: {
JFormContainer,
JDate,
JUpload,
JSelectDepart,
JSelectUserByDep,
JDictSelectTag,
JSelectCompany
},
data() {
return {
isGetOneAndLast: true, //
btndisabled: false,
labelCol: {
xs: { span: 24 },
sm: { span: 5 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 }
},
model: {
planType: null,
company: null,
departId: null
},
validatorRules: {
departId: [
{ required: true, message: '请输入流程发起部门!' }
],
type: [
{ required: true, message: '请输入类型!' }
]
},
//
addDefaultRowNum: 1,
refKeys: ['processIndustrialScrapMaterial'],
tableKeys: ['processIndustrialScrapMaterial'],
activeKey: 'processIndustrialScrapMaterial',
//
processIndustrialScrapMaterialTable: {
loading: false,
dataSource: [],
columns: [
{
title: '民爆报废ID',
key: 'industrialScrapId',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '请求数量',
key: 'quantity',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '实际数量',
key: 'amount',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '单位',
key: 'unit',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '民爆物资id',
key: 'industrialId',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '民爆物资名称',
key: 'industrialName',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '报废原因',
key: 'scrapCause',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '删除标识',
key: 'delFlag',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '报废金额',
key: 'money',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
},
{
title: '备注',
key: 'remarks',
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
}
]
},
url: {
add: '/burst/processIndustrialScraps/add',
edit: '/burst/processIndustrialScraps/edit',
processIndustrialScrapMaterial: {
list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId'
}
}
}
},
props: {
//
disabled: {
type: Boolean,
default: false,
required: false
},
props: {
//
disabled: {
type: Boolean,
default: false,
required: false
},
/*是否处理流程*/
task: { type: Boolean, default: false, required: false },
/*采购类型*/
isPlanType: { type: Boolean, default: false, required: false },
/*是否处理流程*/
task: { type: Boolean, default: false, required: false },
/*采购类型*/
isPlanType: { type: Boolean, default: false, required: false }
},
computed: {
formDisabled() {
return this.disabled
}
},
created() {
let company = sessionStorage.getItem('PARENT_ID')
let puwwcid = sessionStorage.getItem('PUWWC_Id')
let userInfo = sessionStorage.getItem('USER_INFORMATION')
this.popupCallback(company, userInfo, puwwcid)
},
methods: {
//
elect(val) {
if (val != undefined) {
this.assigneesText = val
}
},
computed: {
formDisabled(){
return this.disabled
},
//
saveAndpassTask() {
this.handleSubmit(true)
},
//
backTask() {
},
created () {
//
passTask() {
},
methods: {
//
elect(val) {
if (val != undefined) {
this.assigneesText = val;
//
applySubmit(e) {
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
},
//
saveAndpassTask() {
this.handleSubmit(true)
},
//
backTask(){},
//
passTask(){},
//
applySubmit(e) {
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
let formData = this.classifyIntoFormData(allValues)
console.log('=--=-=-', formData)
/* if (formData.processIndustrialPurchaseMaterialList==0){
this.$message.error('请填写清单内容')
return
}
let formData = this.classifyIntoFormData(allValues)
console.log("=--=-=-",formData);
/* if (formData.processIndustrialPurchaseMaterialList==0){
this.$message.error('请填写清单内容')
return
}
for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) {
if (i == 0) {
this.describes = formData.processIndustrialScrapMaterialList[i].materialName
} else {
this.describes = this.describes + '---' + formData.processIndustrialScrapMaterialList[i].materialName
}
for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) {
if (i == 0) {
this.describes = formData.processIndustrialScrapMaterialList[i].materialName
} else {
this.describes = this.describes + '---' + formData.processIndustrialScrapMaterialList[i].materialName
}
}
*/
*/
formData.fileId = getStringArry(formData.fileId)
// if (this.materialPrice != 0 && this.materialPrice != null) {
// formData.materialPrice = this.materialPrice;
// }else{
// formData.materialPrice = 0;
// }
formData.describes = this.describes
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
return
}
// console.log(this.opinion, '')
this.form.validateFields((err, values) => {
if (!err) {
// console.log(this.processData, '')
formData.procDefId = this.processData.id
formData.procDeTitle = this.processData.name
formData.title = this.processData.description
//formData.sourceCapital
// console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.addFromTableApply
let method = 'post'
if (!this.isNew) {
url = this.url.editFromTableApply
method = 'put'
formData.assignees = this.assignees
formData.tableName = this.processData.tableName
formData.procDefId = this.processData.procDefId
formData.procDeTitle = this.processData.processName
formData.title = this.processData.title
formData.processInstanceId = this.processData.id
}
if (formData.planType == 1 && formData.materialType != 6) {
console.log('格式化后的数据', formData)
// if (formData.ifDirect == null && this.routePlanName == '') {
// this.$message.error('!')
// return;
// } else {
// if (formData.ifDirect == 1) {
// if (formData.ifInspection == null) {
// this.$message.error('!')
// return
// }
// }
// }
}
console.log(formData, '表单数据')
if (this.btndisabled === false) {
this.btndisabled = true
// httpAction(url, formData, method).then((res) => {
// if (res.success) {
// this.$message.success('')
// //todo
// this.$emit('loadData')
// this.close()
// } else {
// this.$message.error(res.message)
// }
// }).finally(() => {
// this.btndisabled = false
// })
}
formData.fileId = getStringArry(formData.fileId)
// if (this.materialPrice != 0 && this.materialPrice != null) {
// formData.materialPrice = this.materialPrice;
// }else{
// formData.materialPrice = 0;
// }
formData.describes = this.describes
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
return
}
// console.log(this.opinion, '')
this.form.validateFields((err, values) => {
if (!err) {
// console.log(this.processData, '')
formData.procDefId = this.processData.id
formData.procDeTitle = this.processData.name
formData.title = this.processData.description
//formData.sourceCapital
// console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.addFromTableApply
let method = 'post'
if (!this.isNew) {
url = this.url.editFromTableApply
method = 'put'
formData.assignees = this.assignees
formData.tableName = this.processData.tableName
formData.procDefId = this.processData.procDefId
formData.procDeTitle = this.processData.processName
formData.title = this.processData.title
formData.processInstanceId = this.processData.id
}
if (formData.planType == 1 && formData.materialType != 6) {
console.log('格式化后的数据', formData)
// if (formData.ifDirect == null && this.routePlanName == '') {
// this.$message.error('!')
// return;
// } else {
// if (formData.ifDirect == 1) {
// if (formData.ifInspection == null) {
// this.$message.error('!')
// return
// }
// }
// }
}
})
console.log(formData, '表单数据')
if (this.btndisabled === false) {
this.btndisabled = true
// httpAction(url, formData, method).then((res) => {
// if (res.success) {
// this.$message.success('')
// //todo
// this.$emit('loadData')
// this.close()
// } else {
// this.$message.error(res.message)
// }
// }).finally(() => {
// this.btndisabled = false
// })
}
}
})
})
},
//
handleSubmit(e) {
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
},
//
handleSubmit(e) {
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
let formData = this.classifyIntoFormData(allValues)
/* if (formData.processIndustrialScrapMaterialList==0){
this.$message.error('请填写清单内容')
return
}
for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) {
if (i == 0) {
this.describes = formData.processIndustrialScrapMaterialList[i].materialName
} else {
this.describes = this.describes + '---' + formData.processIndustrialScrapMaterialList[i].materialName
}
/* if (formData.processIndustrialScrapMaterialList==0){
this.$message.error('请填写清单内容')
return
}
for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) {
if (i == 0) {
this.describes = formData.processIndustrialScrapMaterialList[i].materialName
} else {
this.describes = this.describes + '---' + formData.processIndustrialScrapMaterialList[i].materialName
}
*/
}
*/
// if (this.isPlanType) {
// if (!formData.planType) {
// this.$message.error('')
// return
// }
// }
formData.fileId = getStringArry(formData.fileId)
// if (this.materialPrice != 0 && this.materialPrice != null) {
// formData.materialPrice = this.materialPrice
// }
formData.describes = this.describes
// if (this.isPlanType){
// if (!formData.planType){
// this.$message.error('')
// return
// }
// }
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
return
}
// console.log(formData, '')
// console.log(this.opinion, '')
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id
formData.procDeTitle = this.processData.name
formData.title = this.processData.description
// formData.planType=this.planType;
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.add
let method = 'post'
if (!this.isNew) {
url = this.url.edit
method = 'put'
}
// if (formData.planType == 1 && formData.materialType != 6) {
// // console.log('', formData)
// if (formData.ifDirect == null && this.routePlanName == '') {
// this.$message.error('!')
// return
// } else {
// if (formData.ifDirect == 1) {
// if (formData.ifInspection == null) {
// this.$message.error('!')
// return
// }
// if (this.isPlanType) {
// if (!formData.planType) {
// this.$message.error('')
// return
// }
// }
formData.fileId = getStringArry(formData.fileId)
// if (this.materialPrice != 0 && this.materialPrice != null) {
// formData.materialPrice = this.materialPrice
// }
formData.describes = this.describes
// if (this.isPlanType){
// if (!formData.planType){
// this.$message.error('')
// return
// }
// }
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
return
}
// console.log(formData, '')
// console.log(this.opinion, '')
this.form.validateFields((err, values) => {
if (!err) {
formData.procDefId = this.processData.id
formData.procDeTitle = this.processData.name
formData.title = this.processData.description
// formData.planType=this.planType;
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.add
let method = 'post'
if (!this.isNew) {
url = this.url.edit
method = 'put'
}
// if (formData.planType == 1 && formData.materialType != 6) {
// // console.log('', formData)
// if (formData.ifDirect == null && this.routePlanName == '') {
// this.$message.error('!')
// return
// } else {
// if (formData.ifDirect == 1) {
// if (formData.ifInspection == null) {
// this.$message.error('!')
// return
// }
// }
// }
// }
if (e == true) {
this.passTask()
}
formData.ifDirect = parseInt(formData.ifDirect)
formData.sourceCapital = parseInt(formData.sourceCapital)
formData.planType = parseInt(formData.planType)
if (!!formData.ifInspection) formData.ifInspection = parseInt(formData.ifInspection)
console.log(formData, '格式化的数据')
if (this.btndisabled === false) {
// this.btndisabled = true
// httpAction(url, formData, method).then((res) => {
// if (res.success) {
// //todo
// if (e != true) {
// this.$emit('afterSubmit', formData)
// }
// } else {
// this.$message.error(res.message)
// }
// }
if (e==true){
this.passTask()
}
formData.ifDirect = parseInt(formData.ifDirect);
formData.sourceCapital = parseInt(formData.sourceCapital);
formData.planType = parseInt(formData.planType);
if(!!formData.ifInspection) formData.ifInspection = parseInt(formData.ifInspection);
console.log(formData, '格式化的数据');
if (this.btndisabled === false) {
// this.btndisabled = true
// httpAction(url, formData, method).then((res) => {
// if (res.success) {
// //todo
// if (e != true) {
// this.$emit('afterSubmit', formData)
// }
// } else {
// this.$message.error(res.message)
// }
// }).finally(() => {
// this.btndisabled = false
// })
}
// }).finally(() => {
// this.btndisabled = false
// })
}
})
}
})
})
},
addBefore(){
this.processIndustrialScrapMaterialTable.dataSource=[]
},
getAllTable() {
let values = this.tableKeys.map(key => getRefPromise(this, key))
return Promise.all(values)
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
this.$nextTick(() => {
})
//
if (this.model.id) {
let params = { id: this.model.id }
this.requestSubTableData(this.url.processIndustrialScrapMaterial.list, params, this.processIndustrialScrapMaterialTable)
}
},
//
validateSubForm(allValues){
return new Promise((resolve,reject)=>{
Promise.all([
]).then(() => {
resolve(allValues)
}).catch(e => {
if (e.error === VALIDATE_NO_PASSED) {
// tab
this.activeKey = e.index == null ? this.activeKey : this.refKeys[e.index]
} else {
console.error(e)
}
})
},
popupCallback(company, row, puwwcid) {
let res = JSON.parse(row)
this.model.planType = res.username
this.model.company = company
this.model.departId = res.departIds
},
addBefore() {
this.processIndustrialScrapMaterialTable.dataSource = []
},
getAllTable() {
let values = this.tableKeys.map(key => getRefPromise(this, key))
return Promise.all(values)
},
/** 调用完edit()方法之后会自动调用此方法 */
editAfter() {
this.$nextTick(() => {
})
//
if (this.model.id) {
let params = { id: this.model.id }
this.requestSubTableData(this.url.processIndustrialScrapMaterial.list, params, this.processIndustrialScrapMaterialTable)
}
},
//
validateSubForm(allValues) {
return new Promise((resolve, reject) => {
Promise.all([]).then(() => {
resolve(allValues)
}).catch(e => {
if (e.error === VALIDATE_NO_PASSED) {
// tab
this.activeKey = e.index == null ? this.activeKey : this.refKeys[e.index]
} else {
console.error(e)
}
})
})
},
/** 整理成formData */
classifyIntoFormData(allValues) {
let main = Object.assign(this.model, allValues.formValue)
return {
...main, //
processIndustrialScrapMaterialList: allValues.tablesValue[0].values,
}
},
validateError(msg){
this.$message.error(msg)
},
close() {
this.visible = false
this.$emit('close')
this.$refs.form.clearValidate();
},
/** 整理成formData */
classifyIntoFormData(allValues) {
let main = Object.assign(this.model, allValues.formValue)
return {
...main, //
processIndustrialScrapMaterialList: allValues.tablesValue[0].values
}
},
validateError(msg) {
this.$message.error(msg)
},
close() {
this.visible = false
this.$emit('close')
this.$refs.form.clearValidate()
}
}
}
</script>
<style scoped>

974
src/views/burst/form/purchase/ProcessIndustrialStorageForm.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save