0.0 2 years ago
parent
commit
a7b3af0658
  1. 8
      src/components/jeecg/MBBEditableTable.vue
  2. 1
      src/views/burst/form/purchase/ProcessIndustrialRestoreForm.vue
  3. 206
      src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue

8
src/components/jeecg/MBBEditableTable.vue

@ -11,7 +11,8 @@
<a-col> <a-col>
<!-- 操作按钮 --> <!-- 操作按钮 -->
<div v-if="actionButton" class="action-button"> <div v-if="actionButton" class="action-button">
<a-button type="primary" icon="plus" @click="handleClickAdd" :disabled="disabled">新增</a-button> <a-button type="primary" icon="plus" @click="handleClickAdd" v-if="isabled" :disabled="isabled">新增</a-button>
<a-button type="primary" icon="plus" @click="handleClickAdd" v-else :disabled="isabled">新增</a-button>
<span class="gap"></span> <span class="gap"></span>
<template v-if="selectedRowIds.length>0"> <template v-if="selectedRowIds.length>0">
<a-popconfirm <a-popconfirm
@ -690,6 +691,11 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
//
isabled: {
type: Boolean,
default: false
},
// //
dragSort: { dragSort: {
type: Boolean, type: Boolean,

1
src/views/burst/form/purchase/ProcessIndustrialRestoreForm.vue

@ -278,6 +278,7 @@ import pick from 'lodash.pick'
passTask(){}, passTask(){},
// //
applySubmit(e) { applySubmit(e) {
console.log("e>>>>>>>>>>>>>>>>>",e)
this.getAllTable().then(tables => { this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables) return validateFormAndTables(this.form, tables)
}).then(allValues => { }).then(allValues => {

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

@ -41,16 +41,23 @@
<!-- 子表单区域 --> <!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs"> <a-tabs v-model="activeKey" @change="handleChangeTabs">
<a-tab-pane tab="民爆物资报废详情表" :key="refKeys[0]" :forceRender="true"> <a-tab-pane tab="民爆物资报废详情表" :key="refKeys[0]" :forceRender="true">
<j-editable-table <m-b-b-editable-table
ref="processIndustrialScrapMaterial"
:ref="refKeys[0]" :ref="refKeys[0]"
:loading="processIndustrialScrapMaterialTable.loading" :loading="processIndustrialScrapMaterialTable.loading"
:columns="processIndustrialScrapMaterialTable.columns" :columns="processIndustrialScrapMaterialTable.columns"
:dataSource="processIndustrialScrapMaterialTable.dataSource" :dataSource="processIndustrialScrapMaterialTable.dataSource"
:dragSortType="accounting"
:maxHeight="300" :maxHeight="300"
:disabled="formDisabled" :disabled="formDisabled"
:isabled="isabled"
:materialNature = materialNature
@valueChange ="onSelect"
:rowNumber="true" :rowNumber="true"
:rowSelection="true" :rowSelection="true"
:actionButton="true" /> :actionButton="!task"
@descriptionFetch = "searchInformation"
/>
</a-tab-pane> </a-tab-pane>
</a-tabs> </a-tabs>
<div class="div_process"> <div class="div_process">
@ -70,7 +77,6 @@
<a-form-item v-if="isPlanType" :wrapperCol="{ span: 24 }" style="text-align: center"> <a-form-item v-if="isPlanType" :wrapperCol="{ span: 24 }" style="text-align: center">
<a-button type="primary" @click="handleSubmit">保存</a-button> <a-button type="primary" @click="handleSubmit">保存</a-button>
<a-button style="margin-left: 8px" type="primary" @click="saveAndpassTask">通过</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-button style="margin-left: 8px" @click="backTask">驳回</a-button>
</a-form-item> </a-form-item>
</div> </div>
@ -88,8 +94,7 @@ import JSelectDepart from '@/components/jeecgbiz/JSelectDepart'
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep' import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep'
import JDictSelectTag from '@/components/dict/JDictSelectTag' import JDictSelectTag from '@/components/dict/JDictSelectTag'
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany' import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
import { validateDuplicateValue } from '@/utils/util' import { getAction, getStringArry, httpAction } from '@api/manage'
import { getStringArry } from '@api/manage'
import pick from 'lodash.pick' import pick from 'lodash.pick'
export default { export default {
@ -108,6 +113,10 @@ export default {
return { return {
isGetOneAndLast: true, // isGetOneAndLast: true, //
btndisabled: false, btndisabled: false,
materialNature : null, //
accounting: undefined, //
isabled : true,
qeihuan : true, //
labelCol: { labelCol: {
xs: { span: 24 }, xs: { span: 24 },
sm: { span: 5 } sm: { span: 5 }
@ -129,7 +138,6 @@ export default {
xs: { span: 24 }, xs: { span: 24 },
sm: { span: 5 } sm: { span: 5 }
}, },
validatorRules: { validatorRules: {
departId: [ departId: [
{ required: true, message: '请输入流程发起部门!' } { required: true, message: '请输入流程发起部门!' }
@ -148,14 +156,14 @@ export default {
loading: false, loading: false,
dataSource: [], dataSource: [],
columns: [ columns: [
{ // {
title: '民爆报废ID', // title: 'ID',
key: 'industrialScrapId', // key: 'industrialScrapId',
type: FormTypes.input, // type: FormTypes.input,
width: '200px', // width: '200px',
placeholder: '请输入${title}', // placeholder: '${title}',
defaultValue: '' // defaultValue: ''
}, // },
{ {
title: '请求数量', title: '请求数量',
key: 'quantity', key: 'quantity',
@ -233,6 +241,7 @@ export default {
url: { url: {
add: '/burst/processIndustrialScraps/add', add: '/burst/processIndustrialScraps/add',
edit: '/burst/processIndustrialScraps/edit', edit: '/burst/processIndustrialScraps/edit',
processIndustrialUrlList: '/burst/processIndustrial/list', //
processIndustrialScrapMaterial: { processIndustrialScrapMaterial: {
list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId' list: '/burst/processIndustrialScraps/queryProcessIndustrialScrapMaterialByMainId'
} }
@ -254,6 +263,8 @@ export default {
default: false, default: false,
required: false required: false
}, },
/*是否新增*/
isNew: { type: Boolean, default: false, required: false },
/*是否处理流程*/ /*是否处理流程*/
task: { type: Boolean, default: false, required: false }, task: { type: Boolean, default: false, required: false },
/*采购类型*/ /*采购类型*/
@ -272,12 +283,88 @@ export default {
}, },
methods: { methods: {
// //
elect(val) { async elect(val) {
console.log("val>>>>>>>>>>>",val) console.log("val>>>>>>>>>>>",val)
if (val != undefined) { if (val != undefined) {
this.accounting = val;
this.isabled = false;
this.qeihuan = val;
//
this.assigneesText = val this.assigneesText = val
await this.searchInformation();
} }
}, },
async onSelect(record){
console.log("record>>>>>>>>>>>>>>>>>>>>>>>>>",record)
// //
// if(record.column.key == "equipment" && !!record.row.id || record.column.key == "materialName" && !!record.row.id ){
// await this.pastSla();
// let l = false;
// this.historyNumList.forEach( item =>{
// // console.log("111",item);
// if(item.equipment == record.value){
// l =true;
// }
// });
// if(l){
// this.qingKong(record.row.id);
// }else{
// let sous = false;
// this.equipmentList.forEach( item =>{
// // console.log(item)
// if(item.merchandiseNewsId == record.value){
// sous = true;
// }
// })
// if(!sous){
// //ID
// await this.searchInformation(record.value);
// }
// this.fuZhi(record.row.id,record.value);
// }
// await this.jinYong();
// }
// //
// if(record.column.key = "actualNumber" && !!record.row.scrapNumber && !this.allotBaoNumber){
// let ase = 0;
// let bao = false;
// this.BaoFeiNumList.forEach(item =>{
//
// if(item.merchandiseNewsId === record.row.equipment){
// // console.log("11-=-=",item);
//
// if(record.row.actualNumber > item.materialQuantity){
// this.$message.warning("");
// bao = true;
// let values = [
// {
// rowKey: record.row.id,
// values: {
// 'actualNumber': null ,
// 'materialAmount': null,
// }
// }
// ]
// this.$refs.processSmaterialsScrapList.setValues(values);
// }
// }
// })
// if(!bao){
// ase = accMul(record.row.actualNumber,record.row.materialPrice) > 0 ? accMul(record.row.actualNumber,record.row.materialPrice) : 1 * record.row.materialPrice;
// let values = [
// {
// rowKey: record.row.id,
// values: {
// // 'scrapNumber': record.row.scrapNumber > 0 ? record.row.scrapNumber : 1 ,
// 'materialAmount': ase,
// }
// }
// ]
// this.$refs.processSmaterialsScrapList.setValues(values);
// }
// }
},
// //
saveAndpassTask() { saveAndpassTask() {
this.handleSubmit(true) this.handleSubmit(true)
@ -287,15 +374,66 @@ export default {
}, },
// //
passTask() { passTask() {
},
//
searchInformation(value){
return new Promise( (resolve, reject) => {
let par = {
type: this.accounting
}
let numberList = [];
this.$refs.processIndustrialScrapMaterial.getValues((a, b, c) => {
b.forEach(item => {
if (!!item.equipment) {
numberList.push(item.equipment)
}
})
})
//
console.log("=-=-=-",par);
getAction(this.url.processIndustrialUrlList,par).then(res =>{
if(res.success){
console.log("res>>>>>>>>>>>>>>>>>>>>",res)
this.equipmentList = res.result.records;
let nu = res.result.records || res.result;
let qc = [];
// if (this.processIndustrialScrapMaterialTable.columns[1].options.length > 0) {
// this.processIndustrialScrapMaterialTable.columns[1].options = []
// }
nu.forEach(item =>{
qc.push({
title: item.materialNumber,
value: item.merchandiseNewsId,
disabled: false
})
})
console.log("qc>>>>>>>>>>>>>>>",qc)
numberList.forEach( it => {
// console.log("000000",it);
qc.forEach(item =>{
if( it == item.value ){
item.disabled = true;
}
})
})
// this.processSmaterialsScrapListTable.columns[1].options = qc;
}
resolve();
})
})
}, },
// //
applySubmit(e) { applySubmit(e) {
console.log('e>>>>>>>>>>>>>>>', e)
this.getAllTable().then(tables => { this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables) return validateFormAndTables(this.form, tables)
}).then(allValues => { }).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') { if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData') throw this.throwNotFunction('classifyIntoFormData')
} }
console.log('allValues=--=-=-', allValues)
let formData = this.classifyIntoFormData(allValues) let formData = this.classifyIntoFormData(allValues)
console.log('=--=-=-', formData) console.log('=--=-=-', formData)
/* if (formData.processIndustrialPurchaseMaterialList==0){ /* if (formData.processIndustrialPurchaseMaterialList==0){
@ -321,10 +459,10 @@ export default {
// formData.materialPrice = 0; // formData.materialPrice = 0;
// } // }
formData.describes = this.describes formData.describes = this.describes
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) { // if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间') // this.$message.error('')
return // return
} // }
// console.log(this.opinion, '') // console.log(this.opinion, '')
this.form.validateFields((err, values) => { this.form.validateFields((err, values) => {
if (!err) { if (!err) {
@ -335,10 +473,10 @@ export default {
//formData.sourceCapital //formData.sourceCapital
// console.log('this.planType++', this.planType) // console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.addFromTableApply var url = this.url.add
let method = 'post' let method = 'post'
if (!this.isNew) { if (!this.isNew) {
url = this.url.editFromTableApply url = this.url.edit
method = 'put' method = 'put'
formData.assignees = this.assignees formData.assignees = this.assignees
formData.tableName = this.processData.tableName formData.tableName = this.processData.tableName
@ -361,21 +499,20 @@ export default {
// } // }
// } // }
} }
console.log(formData, '表单数据')
if (this.btndisabled === false) { if (this.btndisabled === false) {
this.btndisabled = true this.btndisabled = true
// httpAction(url, formData, method).then((res) => { httpAction(url, formData, method).then((res) => {
// if (res.success) { if (res.success) {
// this.$message.success('') this.$message.success('提交申请成功!')
// //todo //todo
// this.$emit('loadData') this.$emit('loadData')
// this.close() this.close()
// } else { } else {
// this.$message.error(res.message) this.$message.error(res.message)
// } }
// }).finally(() => { }).finally(() => {
// this.btndisabled = false this.btndisabled = false
// }) })
} }
} }
}) })
@ -398,6 +535,7 @@ export default {
this.$message.error('请填写清单内容') this.$message.error('请填写清单内容')
return return
} }
for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) { for (let i = 0; i < formData.processIndustrialScrapMaterialList.length; i++) {
if (i == 0) { if (i == 0) {
this.describes = formData.processIndustrialScrapMaterialList[i].materialName this.describes = formData.processIndustrialScrapMaterialList[i].materialName

Loading…
Cancel
Save