Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev
caoyizhong 2 years ago
parent
commit
3dde34348e
  1. 193
      src/components/jeecg/MBCKEditableTable.vue
  2. 193
      src/components/jeecg/MBGEditableTable.vue
  3. 7
      src/views/burst/form/purchase/ProcessIndustrialDelivery.vue
  4. 248
      src/views/burst/form/purchase/ProcessIndustrialDeliveryForm.vue
  5. 7
      src/views/burst/form/purchase/ProcessIndustrialRestore.vue
  6. 223
      src/views/burst/form/purchase/ProcessIndustrialRestoreForm.vue
  7. 7
      src/views/burst/form/purchase/ProcessIndustrialScraps.vue
  8. 36
      src/views/burst/form/purchase/ProcessIndustrialScrapsForm.vue

193
src/components/jeecg/MBCKEditableTable.vue

@ -11,7 +11,8 @@
<a-col>
<!-- 操作按钮 -->
<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>
<template v-if="selectedRowIds.length>0">
<a-popconfirm
@ -136,7 +137,7 @@
<!-- 右侧动态生成td -->
<div
class="td"
v-for="col in columns"
v-for="(col,index) in columns"
v-show="col.type !== formTypes.hidden"
:key="col.key"
:style="buildTdStyle(col)">
@ -520,12 +521,14 @@
<template v-else-if="col.type === formTypes.sel_search">
<a-tooltip v-bind="buildTooltipProps(row, col, id)">
<a-select
ref = "sel"
v-if="isEditRow(row, col)"
:id="id"
:key="i"
showSearch
@search="searchOption($event,col,index)"
optionFilterProp="children"
:filterOption="filterOption"
:autoClearSearchValue = false
v-bind="buildProps(row,col)"
style="width: 100%;"
:value="searchSelectValues[id]"
@ -534,12 +537,15 @@
:placeholder="replaceProps(col, col.placeholder)"
@change="(v)=>handleSearchSelectChange(v,id,row,col)"
allowClear
:filterOption="false"
/>
<!-- :filterOption="filterOption"-->
<span
v-else
class="j-td-span no-edit"
:class="{disabled: buildProps(row,col).disabled}"
@click="handleEditRow(row, col)"
@focus="a"
>{{ getSelectTranslateText(searchSelectValues[id], row, col) }}</span>
</a-tooltip>
</template>
@ -625,7 +631,7 @@ import { FormTypes, VALIDATE_NO_PASSED } from '@/utils/JEditableTableUtil'
import { cloneObject, randomString, randomNumber, getEventPath } from '@/utils/util'
import JDate from '@/components/jeecg/JDate'
import { filterDictText, initDictOptions } from '@/components/dict/JDictSelectUtil'
import { getFileAccessHttpUrl } from '@/api/manage';
import { getAction, getFileAccessHttpUrl } from '@/api/manage'
import JInputPop from '@/components/jeecg/minipop/JInputPop'
import JFilePop from '@/components/jeecg/minipop/JFilePop'
@ -633,7 +639,7 @@ import JFilePop from '@/components/jeecg/minipop/JFilePop'
let rowHeight = 61
export default {
name: 'MBCKEditableTable',
name: 'BEditableTable',
components: { JDate, Draggable, JInputPop, JFilePop },
provide() {
return {
@ -685,11 +691,32 @@ export default {
return {}
}
},
//
sections: {
type: Object,
default() {
return {}
}
},
//
materialNature: {
type: String,
},
//
disabled: {
type: Boolean,
default: false
},
//
isabled: {
type: Boolean,
default: false
},
//
appropriationPlan: {
type: String
},
//
dragSort: {
type: Boolean,
@ -699,6 +726,18 @@ export default {
type: String,
default: 'orderNum'
},
//
dragSortType: {
type: String
},
//
// putUnder: {
// type: String,
// },
//
qeihuan: {
type: String,
},
// false
alwaysEdit: {
type: Boolean,
@ -775,9 +814,15 @@ export default {
// push
lastPushTimeMap: new Map(),
number:0,
url:{
descriptionRakeUrl: "/description/processDescription/list",
merchandiseNewsList: '/merchandisenews/processMerchandiseNews/merchandiseNewsList',
merchandiseNewsListDB: '/wastematerials/processWasteMaterials/merchandiseNewsName',
}
}
},
created() {
console.log(this.disabled);
this.inputValues = []
// tr
this.visibleTrEls = []
@ -870,6 +915,15 @@ export default {
// console.log('watch.rows:', cloneObject({ val, old }))
}
},
qeihuan:{
immediate: true,
handler: function (newValue) {
// console.log(newValue,"");
this.$nextTick( () =>{
this.getClone();
});
}
},
dataSource: {
immediate: true,
handler: function (newValue) {
@ -939,6 +993,29 @@ export default {
},
methods: {
shuChange(val,b,c){
// console.log("sdtgfsd",val,b,c)
},
//
getClone(){
let ids= [];
this.getValues((a,b,c)=>{
b.forEach(it => {
ids.push(it.id);
});
this.removeRows(ids);
});
},
a(){
// console.log("l");
// this.getSelection((a,b,c)=>{
// console.log(a,b,c);
// // b.forEach(item =>{
// // console.log(item);
// // });
// });
},
getElement(id, noCaseId = false) {
if (!this.el[id]) {
@ -1339,8 +1416,9 @@ export default {
},
/** 删除被选中的行 */
removeSelectedRows() {
this.removeRows(this.selectedRowIds)
this.selectedRowIds = []
this.removeRows(this.selectedRowIds);
this.selectedRowIds = [];
this.$emit("bumen",true);
},
/** 删除一行或多行 */
removeRows(id) {
@ -1959,6 +2037,7 @@ export default {
},
handleClickAdd() {
this.$emit('descriptionFetch');
this.add()
},
handleConfirmDelete() {
@ -2119,7 +2198,23 @@ export default {
}
}
//
this.inputValues[index][column.key] = value
this.inputValues[index][column.key] = value;
// console.log("-=-=-=",value)
// this.searchOption(value,null,index);
// console.log("sadfgasdf",value);
// //
// let pam ={
// descriptionNam: value,
//
// }
// getAction(this.url.descriptionRakeUrl,pam).then(res=>{
// if(){
//
// }
// })
//
this.validateOneInput(value, row, column, this.notPassedIds, true, 'input')
@ -2504,7 +2599,7 @@ export default {
},
/** view辅助方法:构造props */
buildProps(row, col) {
// console.log("buildProps=========================")
// console.log("buildProps============",)
let props = {}
// props
if (typeof col.props === 'object') {
@ -2632,11 +2727,85 @@ export default {
this.elemValueChange(FormTypes.sel_search, row, column, value)
},
filterOption(input, option) {
console.log("filterOption=========",input,option);
// console.log("filterOption=========",input,option);
console.log("option.componentOptions.children[0]",option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0)
// console.log("option.componentOptions.children[0]",option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0)
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
},
searchOption (input,pro,index){
// console.log("searchOption=========",input,index);
return new Promise(async (resolve, reject) => {
if(index == 1 && !input || index == 3 && !input){
return;
}
let ib = false;
let par = {
materialsNumber: input,
materialType: this.dragSortType,
// materialDepart: this.putUnder
}
let pattern = new RegExp("[\u4E00-\u9FA5]+");
if(pattern.test(input) && index == 1 || pattern.test(input) && index == 3){
ib = true;
}
let url = '' ;
if(!!this.appropriationPlan){
//
// url = this.url.merchandiseNewsList;
// console.log("222222222");
}else{
//
// console.log("111",this.sections);
if(!!this.materialNature){
console.log("执行了");
par.materialNature = this.materialNature;
}
if(!!this.sections){
if(this.sections.orgType == "2"){
par.departId = this.sections.departIds;
}
if(this.sections.orgType == "3"){
par.departId = this.sections.parentId;
}
}
url = this.url.merchandiseNewsListDB;
}
await getAction(url,par).then( (res)=>{
let a= [];
if(res.success){
console.log("222222222222222===",res.result);
let pam = res.result.records||res.result;
pam.forEach( item => {
let isb = false;
let val = '';
if(!!this.appropriationPlan){
val = item.id
}else{
val = item.merchandiseNewsId
}
let name = null;
if(ib){
name = item.merchandiseName;
}else{
name = item.materialsNumber;
}
a.push({
title : name,
value : val,
disabled: isb
})
})
this.columns[index].options = a;
this.$emit("shifu",true);
resolve( );
}
});
})
},
getEllipsisWord(content, len){
if(!content || content.length === 0){
return ''
@ -2651,7 +2820,7 @@ export default {
/** 获取Select等组件翻译后的文本 */
getSelectTranslateText(value, row, col) {
// console.log("getSelectTranslateText====================")
console.log("getSelectTranslateText====================")
//
return filterDictText(col.options, value)
},

193
src/components/jeecg/MBGEditableTable.vue

@ -11,7 +11,8 @@
<a-col>
<!-- 操作按钮 -->
<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>
<template v-if="selectedRowIds.length>0">
<a-popconfirm
@ -136,7 +137,7 @@
<!-- 右侧动态生成td -->
<div
class="td"
v-for="col in columns"
v-for="(col,index) in columns"
v-show="col.type !== formTypes.hidden"
:key="col.key"
:style="buildTdStyle(col)">
@ -520,12 +521,14 @@
<template v-else-if="col.type === formTypes.sel_search">
<a-tooltip v-bind="buildTooltipProps(row, col, id)">
<a-select
ref = "sel"
v-if="isEditRow(row, col)"
:id="id"
:key="i"
showSearch
@search="searchOption($event,col,index)"
optionFilterProp="children"
:filterOption="filterOption"
:autoClearSearchValue = false
v-bind="buildProps(row,col)"
style="width: 100%;"
:value="searchSelectValues[id]"
@ -534,12 +537,15 @@
:placeholder="replaceProps(col, col.placeholder)"
@change="(v)=>handleSearchSelectChange(v,id,row,col)"
allowClear
:filterOption="false"
/>
<!-- :filterOption="filterOption"-->
<span
v-else
class="j-td-span no-edit"
:class="{disabled: buildProps(row,col).disabled}"
@click="handleEditRow(row, col)"
@focus="a"
>{{ getSelectTranslateText(searchSelectValues[id], row, col) }}</span>
</a-tooltip>
</template>
@ -625,7 +631,7 @@ import { FormTypes, VALIDATE_NO_PASSED } from '@/utils/JEditableTableUtil'
import { cloneObject, randomString, randomNumber, getEventPath } from '@/utils/util'
import JDate from '@/components/jeecg/JDate'
import { filterDictText, initDictOptions } from '@/components/dict/JDictSelectUtil'
import { getFileAccessHttpUrl } from '@/api/manage';
import { getAction, getFileAccessHttpUrl } from '@/api/manage'
import JInputPop from '@/components/jeecg/minipop/JInputPop'
import JFilePop from '@/components/jeecg/minipop/JFilePop'
@ -633,7 +639,7 @@ import JFilePop from '@/components/jeecg/minipop/JFilePop'
let rowHeight = 61
export default {
name: 'MBGEditableTable',
name: 'BEditableTable',
components: { JDate, Draggable, JInputPop, JFilePop },
provide() {
return {
@ -685,11 +691,32 @@ export default {
return {}
}
},
//
sections: {
type: Object,
default() {
return {}
}
},
//
materialNature: {
type: String,
},
//
disabled: {
type: Boolean,
default: false
},
//
isabled: {
type: Boolean,
default: false
},
//
appropriationPlan: {
type: String
},
//
dragSort: {
type: Boolean,
@ -699,6 +726,18 @@ export default {
type: String,
default: 'orderNum'
},
//
dragSortType: {
type: String
},
//
// putUnder: {
// type: String,
// },
//
qeihuan: {
type: String,
},
// false
alwaysEdit: {
type: Boolean,
@ -775,9 +814,15 @@ export default {
// push
lastPushTimeMap: new Map(),
number:0,
url:{
descriptionRakeUrl: "/description/processDescription/list",
merchandiseNewsList: '/merchandisenews/processMerchandiseNews/merchandiseNewsList',
merchandiseNewsListDB: '/wastematerials/processWasteMaterials/merchandiseNewsName',
}
}
},
created() {
console.log(this.disabled);
this.inputValues = []
// tr
this.visibleTrEls = []
@ -870,6 +915,15 @@ export default {
// console.log('watch.rows:', cloneObject({ val, old }))
}
},
qeihuan:{
immediate: true,
handler: function (newValue) {
// console.log(newValue,"");
this.$nextTick( () =>{
this.getClone();
});
}
},
dataSource: {
immediate: true,
handler: function (newValue) {
@ -939,6 +993,29 @@ export default {
},
methods: {
shuChange(val,b,c){
// console.log("sdtgfsd",val,b,c)
},
//
getClone(){
let ids= [];
this.getValues((a,b,c)=>{
b.forEach(it => {
ids.push(it.id);
});
this.removeRows(ids);
});
},
a(){
// console.log("l");
// this.getSelection((a,b,c)=>{
// console.log(a,b,c);
// // b.forEach(item =>{
// // console.log(item);
// // });
// });
},
getElement(id, noCaseId = false) {
if (!this.el[id]) {
@ -1339,8 +1416,9 @@ export default {
},
/** 删除被选中的行 */
removeSelectedRows() {
this.removeRows(this.selectedRowIds)
this.selectedRowIds = []
this.removeRows(this.selectedRowIds);
this.selectedRowIds = [];
this.$emit("bumen",true);
},
/** 删除一行或多行 */
removeRows(id) {
@ -1959,6 +2037,7 @@ export default {
},
handleClickAdd() {
this.$emit('descriptionFetch');
this.add()
},
handleConfirmDelete() {
@ -2119,7 +2198,23 @@ export default {
}
}
//
this.inputValues[index][column.key] = value
this.inputValues[index][column.key] = value;
// console.log("-=-=-=",value)
// this.searchOption(value,null,index);
// console.log("sadfgasdf",value);
// //
// let pam ={
// descriptionNam: value,
//
// }
// getAction(this.url.descriptionRakeUrl,pam).then(res=>{
// if(){
//
// }
// })
//
this.validateOneInput(value, row, column, this.notPassedIds, true, 'input')
@ -2504,7 +2599,7 @@ export default {
},
/** view辅助方法:构造props */
buildProps(row, col) {
// console.log("buildProps=========================")
// console.log("buildProps============",)
let props = {}
// props
if (typeof col.props === 'object') {
@ -2632,11 +2727,85 @@ export default {
this.elemValueChange(FormTypes.sel_search, row, column, value)
},
filterOption(input, option) {
console.log("filterOption=========",input,option);
// console.log("filterOption=========",input,option);
console.log("option.componentOptions.children[0]",option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0)
// console.log("option.componentOptions.children[0]",option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0)
return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
},
searchOption (input,pro,index){
// console.log("searchOption=========",input,index);
return new Promise(async (resolve, reject) => {
if(index == 1 && !input || index == 3 && !input){
return;
}
let ib = false;
let par = {
materialsNumber: input,
materialType: this.dragSortType,
// materialDepart: this.putUnder
}
let pattern = new RegExp("[\u4E00-\u9FA5]+");
if(pattern.test(input) && index == 1 || pattern.test(input) && index == 3){
ib = true;
}
let url = '' ;
if(!!this.appropriationPlan){
//
// url = this.url.merchandiseNewsList;
// console.log("222222222");
}else{
//
// console.log("111",this.sections);
if(!!this.materialNature){
console.log("执行了");
par.materialNature = this.materialNature;
}
if(!!this.sections){
if(this.sections.orgType == "2"){
par.departId = this.sections.departIds;
}
if(this.sections.orgType == "3"){
par.departId = this.sections.parentId;
}
}
url = this.url.merchandiseNewsListDB;
}
await getAction(url,par).then( (res)=>{
let a= [];
if(res.success){
console.log("222222222222222===",res.result);
let pam = res.result.records||res.result;
pam.forEach( item => {
let isb = false;
let val = '';
if(!!this.appropriationPlan){
val = item.id
}else{
val = item.merchandiseNewsId
}
let name = null;
if(ib){
name = item.merchandiseName;
}else{
name = item.materialsNumber;
}
a.push({
title : name,
value : val,
disabled: isb
})
})
this.columns[index].options = a;
this.$emit("shifu",true);
resolve( );
}
});
})
},
getEllipsisWord(content, len){
if(!content || content.length === 0){
return ''
@ -2651,7 +2820,7 @@ export default {
/** 获取Select等组件翻译后的文本 */
getSelectTranslateText(value, row, col) {
// console.log("getSelectTranslateText====================")
console.log("getSelectTranslateText====================")
//
return filterDictText(col.options, value)
},

7
src/views/burst/form/purchase/ProcessIndustrialDelivery.vue

@ -5,6 +5,7 @@
<a-tab-pane tab="流程正文" key="1" forceRender>
<process-industrial-delivery-form :isNew="isNew" :processData="processData" :disabled="disabled" @close="close"
:task="task" :hieg="hieg" :isPlanType="isPlanType"
@afterSubmit="afterSub"
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName"
:itemId="itemId" />
</a-tab-pane>
@ -84,6 +85,12 @@ export default {
},
methods: {
afterSub(formData) {
this.$emit('afterSubmit', formData)
},
loadData() {
this.$emit('loadData')
},
close() {
//todo
this.$emit('close')

248
src/views/burst/form/purchase/ProcessIndustrialDeliveryForm.vue

@ -20,14 +20,15 @@
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deliveryType">
<!-- <a-input-number v-model="model.deliveryType" placeholder="请输入物资类型" style="width: 100%" />-->
<j-dict-select-tag type="list" v-decorator="['deliveryType']"
dictCode="explosive_type"
placeholder="请选择物资类型" @change="elect"/>
</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-decorator="['type']"
dictCode="explosive_type" :trigger-change="true"
placeholder="请选择物资类型" @change="elect" />
</a-form-model-item>
</a-col>
<a-col :xs="24" :sm="8">
<a-form-model-item label="批次" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="batch">
<a-input v-decorator="['batch']" placeholder="请输入批次" ></a-input>
@ -47,24 +48,29 @@
<!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs">
<a-tab-pane tab="民爆物资出库详情表" :key="refKeys[0]" :forceRender="true">
<j-editable-table
<m-b-c-k-editable-table
ref="processIndustrialDeliveryMaterial"
:ref="refKeys[0]"
:loading="processIndustrialDeliveryMaterialTable.loading"
:columns="processIndustrialDeliveryMaterialTable.columns"
:dataSource="processIndustrialDeliveryMaterialTable.dataSource"
:dragSortType="accounting"
:maxHeight="300"
:disabled="formDisabled"
:isabled="isabled"
@valueChange ="onSelect"
@descriptionFetch = "searchInformation"
:actionButton="!task"
: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" 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">
@ -94,7 +100,7 @@ import { FormTypes, getRefPromise, VALIDATE_NO_PASSED, validateFormAndTables } f
import JSelectUserByDep from '@/components/jeecgbiz/JSelectUserByDep'
import JDictSelectTag from '@/components/dict/JDictSelectTag'
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
import { getStringArry } from '@api/manage'
import { getAction, getStringArry, httpAction } from '@api/manage'
import pick from 'lodash.pick'
export default {
@ -111,6 +117,10 @@ import pick from 'lodash.pick'
},
data() {
return {
accounting: undefined, //
materialNature : null, //
isabled : true,
qeihuan : true, //
isGetOneAndLast: true, //
btndisabled: false,
labelCol: {
@ -202,19 +212,21 @@ import pick from 'lodash.pick'
placeholder: '请输入${title}',
defaultValue:'',
},
{
title: '删除标识',
key: 'delFlag',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
// {
// title: '',
// key: 'delFlag',
// type: FormTypes.input,
// width:"200px",
// placeholder: '${title}',
// defaultValue:'',
// },
]
},
url: {
add: "/burst/processIndustrialDelivery/add",
addApply: "/burst/processIndustrialDelivery/addApply",
edit: "/burst/processIndustrialDelivery/edit",
processIndustrialUrlList: '/burst/processIndustrial/list', //
processIndustrialDeliveryMaterial: {
list: '/burst/processIndustrialDelivery/queryProcessIndustrialDeliveryMaterialByMainId'
},
@ -236,6 +248,8 @@ import pick from 'lodash.pick'
default: false,
required: false
},
/*是否新增*/
isNew: { type: Boolean, default: false, required: false },
/*是否处理流程*/
task: { type: Boolean, default: false, required: false },
/*采购类型*/
@ -253,10 +267,136 @@ import pick from 'lodash.pick'
this.popupCallback(company, userInfo, puwwcid)
},
methods: {
//
searchInformation(value){
return new Promise( (resolve, reject) => {
let par = {
type: this.accounting
}
let numberList = [];
this.$refs.processIndustrialDeliveryMaterial.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();
})
})
},
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);
// }
// }
},
//
elect(val) {
async elect(val) {
console.log("val>>>>>>>>>>>",val)
if (val != undefined) {
this.assigneesText = val;
this.accounting = val;
this.isabled = false;
this.qeihuan = val;
//
this.assigneesText = val
await this.searchInformation();
}
},
//
@ -300,10 +440,10 @@ import pick from 'lodash.pick'
// formData.materialPrice = 0;
// }
formData.describes = this.describes
if (new Date(formData.createTime).getTime() / 100 > new Date(formData.needTime).getTime() / 100) {
this.$message.error('需求时间不能小于当前流程发起时间')
return
}
// 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) {
@ -314,10 +454,10 @@ import pick from 'lodash.pick'
//formData.sourceCapital
// console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.addFromTableApply
var url = this.url.addApply
let method = 'post'
if (!this.isNew) {
url = this.url.editFromTableApply
url = this.url.edit
method = 'put'
formData.assignees = this.assignees
formData.tableName = this.processData.tableName
@ -343,18 +483,18 @@ import pick from 'lodash.pick'
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
// })
httpAction(url, formData, method).then((res) => {
if (res.success) {
this.$message.success('提交申请成功!')
//todo
this.$emit('afterSubmit',formData)
//this.close()
} else {
this.$message.error(res.message)
}
}).finally(() => {
this.btndisabled = false
})
}
}
})
@ -445,19 +585,19 @@ import pick from 'lodash.pick'
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
// })
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
})
}
}
})

7
src/views/burst/form/purchase/ProcessIndustrialRestore.vue

@ -5,6 +5,7 @@
<a-tab-pane tab="流程正文" key="1" forceRender>
<process-industrial-restore-form :isNew="isNew" :processData="processData" :disabled="disabled" @close="close"
:task="task" :hieg="hieg" :isPlanType="isPlanType"
@afterSubmit="afterSub"
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName"
:itemId="itemId" />
</a-tab-pane>
@ -83,6 +84,12 @@ export default {
},
methods: {
afterSub(formData) {
this.$emit('afterSubmit', formData)
},
loadData() {
this.$emit('loadData')
},
close() {
//todo
this.$emit('close')

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

@ -40,16 +40,23 @@
<!-- 子表单区域 -->
<a-tabs v-model="activeKey" @change="handleChangeTabs">
<a-tab-pane tab="民爆物资归还详情表" :key="refKeys[0]" :forceRender="true">
<j-editable-table
<m-b-g-editable-table
ref="processIndustrialRestoreMaterial"
:ref="refKeys[0]"
:loading="processIndustrialRestoreMaterialTable.loading"
:columns="processIndustrialRestoreMaterialTable.columns"
:dataSource="processIndustrialRestoreMaterialTable.dataSource"
:dragSortType="accounting"
:maxHeight="300"
:disabled="formDisabled"
:isabled="isabled"
:materialNature = materialNature
:rowNumber="true"
:rowSelection="true"
:actionButton="true"/>
@valueChange ="onSelect"
:actionButton="!task"
@descriptionFetch = "searchInformation"
/>
</a-tab-pane>
</a-tabs>
<div class="div_process">
@ -89,6 +96,7 @@ import { getAction, getStringArry } from '@/api/manage'
import JDictSelectTag from '@/components/dict/JDictSelectTag'
import JSelectCompany from '../../../../components/jeecgbiz/JSelectCompany'
import pick from 'lodash.pick'
import { httpAction } from '@api/manage'
export default {
name: 'ProcessIndustrialRestoreForm',
@ -106,6 +114,10 @@ import pick from 'lodash.pick'
return {
isGetOneAndLast: true, //
btndisabled: false,
materialNature : null, //
accounting: undefined, //
isabled : true,
qeihuan : true, //
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
@ -145,14 +157,14 @@ import pick from 'lodash.pick'
loading: false,
dataSource: [],
columns: [
{
title: '民爆归还流程Id',
key: 'industrialRestoreId',
type: FormTypes.input,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
// {
// title: 'Id',
// key: 'industrialRestoreId',
// type: FormTypes.input,
// width:"200px",
// placeholder: '${title}',
// defaultValue:'',
// },
{
title: '民爆物资Id',
key: 'industrialId',
@ -193,14 +205,14 @@ import pick from 'lodash.pick'
placeholder: '请输入${title}',
defaultValue:'',
},
{
/* {
title: '删除标识',
key: 'delFlag',
type: FormTypes.inputNumber,
width:"200px",
placeholder: '请输入${title}',
defaultValue:'',
},
},*/
{
title: '备注',
key: 'remarks',
@ -221,8 +233,10 @@ import pick from 'lodash.pick'
},
url: {
add: "/burst/processIndustrialRestore/add",
addApply: "/burst/processIndustrialRestore/addApply",
edit: "/burst/processIndustrialRestore/edit",
queryById: "/burst/processIndustrialRestore/queryById",
processIndustrialUrlList: '/burst/processIndustrial/list', //
processIndustrialRestoreMaterial: {
list: '/burst/processIndustrialRestore/queryProcessIndustrialRestoreMaterialByMainId'
},
@ -244,6 +258,8 @@ import pick from 'lodash.pick'
default: false,
required: false
},
/*是否新增*/
isNew: { type: Boolean, default: false, required: false },
/*是否处理流程*/
task: { type: Boolean, default: false, required: false },
/*采购类型*/
@ -262,12 +278,137 @@ import pick from 'lodash.pick'
},
methods: {
//
elect(val) {
async elect(val) {
console.log("val>>>>>>>>>>>",val)
if (val != undefined) {
this.assigneesText = val;
this.accounting = val;
this.isabled = false;
this.qeihuan = val;
//
this.assigneesText = val
await this.searchInformation();
}
},
//
searchInformation(value){
return new Promise( (resolve, reject) => {
let par = {
type: this.accounting
}
let numberList = [];
this.$refs.processIndustrialRestoreMaterial.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();
})
})
},
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() {
this.handleSubmit(true)
@ -324,10 +465,10 @@ import pick from 'lodash.pick'
//formData.sourceCapital
// console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.addFromTableApply
var url = this.url.addApply
let method = 'post'
if (!this.isNew) {
url = this.url.editFromTableApply
url = this.url.edit
method = 'put'
formData.assignees = this.assignees
formData.tableName = this.processData.tableName
@ -353,18 +494,18 @@ import pick from 'lodash.pick'
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
// })
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
})
}
}
})
@ -455,19 +596,19 @@ import pick from 'lodash.pick'
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
// })
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
})
}
}
})

7
src/views/burst/form/purchase/ProcessIndustrialScraps.vue

@ -5,6 +5,7 @@
<a-tab-pane tab="流程正文" key="1" forceRender>
<process-industrial-scraps-form :isNew="isNew" :processData="processData" :disabled="disabled" @close="close"
:task="task" :hieg="hieg" :isPlanType="isPlanType"
@afterSubmit="afterSub"
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName"
:itemId="itemId" />
</a-tab-pane>
@ -84,6 +85,12 @@ export default {
},
methods: {
afterSub(formData) {
this.$emit('afterSubmit', formData)
},
loadData() {
this.$emit('loadData')
},
close() {
//todo
this.$emit('close')

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

@ -165,9 +165,9 @@ export default {
// defaultValue: ''
// },
{
title: '民爆物资编号',
title: '民爆物资id',
key: 'industrialId',
type: FormTypes.sel_search,
type: FormTypes.input,
width: '200px',
placeholder: '请输入${title}',
defaultValue: ''
@ -241,6 +241,7 @@ export default {
},
url: {
add: '/burst/processIndustrialScraps/add',
addApply:'/burst/processIndustrialScraps/addApply',
edit: '/burst/processIndustrialScraps/edit',
processIndustrialUrlList: '/burst/processIndustrial/list', //
processIndustrialScrapMaterial: {
@ -427,16 +428,13 @@ export default {
},
//
applySubmit(e) {
console.log('e>>>>>>>>>>>>>>>', e)
this.getAllTable().then(tables => {
return validateFormAndTables(this.form, tables)
}).then(allValues => {
if (typeof this.classifyIntoFormData !== 'function') {
throw this.throwNotFunction('classifyIntoFormData')
}
console.log('allValues=--=-=-', allValues)
let formData = this.classifyIntoFormData(allValues)
console.log('=--=-=-', formData)
/* if (formData.processIndustrialPurchaseMaterialList==0){
this.$message.error('请填写清单内容')
return
@ -474,7 +472,7 @@ export default {
//formData.sourceCapital
// console.log('this.planType++', this.planType)
if (!formData.tableName) formData.tableName = this.processData.businessTable
var url = this.url.add
var url = this.url.addApply
let method = 'post'
if (!this.isNew) {
url = this.url.edit
@ -606,19 +604,19 @@ export default {
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
// })
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
})
}
}
})

Loading…
Cancel
Save