|
@ -39,16 +39,71 @@ |
|
|
</ContentWrap> |
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
<BasicForm |
|
|
<BasicForm basicFormWidth="68" |
|
|
ref="basicFormRef" |
|
|
ref="basicFormRef" |
|
|
@success="formsSuccess" |
|
|
@success="submitForm" |
|
|
:rules="SettlementConfigurationRules" |
|
|
:rules="SettlementConfigurationRules" |
|
|
:formAllSchemas="SettlementConfiguration.allSchemas" |
|
|
:formAllSchemas="SettlementConfiguration.allSchemas" |
|
|
:apiUpdate="SettlementConfigurationApi.updateSettlementConfiguration" |
|
|
:apiUpdate="SettlementConfigurationApi.updateSettlementConfiguration" |
|
|
:apiCreate="SettlementConfigurationApi.createSettlementConfiguration" |
|
|
:apiCreate="SettlementConfigurationApi.createSettlementConfiguration" |
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
:isBusiness="false" |
|
|
:isBusiness="false" |
|
|
/> |
|
|
> |
|
|
|
|
|
<template #tableForm> |
|
|
|
|
|
<!-- 来源库位 --> |
|
|
|
|
|
<template style="display: flex; flex-direction: row;"> |
|
|
|
|
|
<div> |
|
|
|
|
|
<span style="font-weight: bold; margin-left: 10px;">来源仓库</span> |
|
|
|
|
|
<ContentWrap style="margin-right: 20px;margin-top: 5px;"> |
|
|
|
|
|
<TableForm |
|
|
|
|
|
ref="tableFormFromRef" |
|
|
|
|
|
class="w-[100%]" |
|
|
|
|
|
:isShowButton="true" |
|
|
|
|
|
:isShowReduceButtonSelection="true" |
|
|
|
|
|
:tableFields="SettlementConfigurationDetail.allSchemas.tableFormColumns" |
|
|
|
|
|
:tableData="tableDataFrom" |
|
|
|
|
|
:tableFormRules="SettlementConfigurationDetailRules" |
|
|
|
|
|
@handleAddTable="handleAddTable('from')" |
|
|
|
|
|
@handleDeleteTable="(item, index)=>handleDeleteTable(item, index,'from')" |
|
|
|
|
|
@tableSelectionDelete="(selection)=>tableSelectionDelete(selection,'from')" |
|
|
|
|
|
@inpuFocus="inpuFocus" |
|
|
|
|
|
@inputStringBlur="inputStringBlur" |
|
|
|
|
|
:routeName="routeName" |
|
|
|
|
|
> |
|
|
|
|
|
<!-- <template v-slot="{ row }"> |
|
|
|
|
|
<slot :row="row"></slot> |
|
|
|
|
|
</template> --> |
|
|
|
|
|
</TableForm> |
|
|
|
|
|
</ContentWrap> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div> |
|
|
|
|
|
<span style="font-weight: bold; margin-left: 10px;">目标仓库</span> |
|
|
|
|
|
<ContentWrap style="margin-right: 20px;margin-top: 5px;"> |
|
|
|
|
|
<TableForm |
|
|
|
|
|
ref="tableFormToRef" |
|
|
|
|
|
class="w-[100%]" |
|
|
|
|
|
:isShowButton="true" |
|
|
|
|
|
:isShowReduceButtonSelection="true" |
|
|
|
|
|
:tableFields="SettlementConfigurationDetail.allSchemas.tableFormColumns" |
|
|
|
|
|
:tableData="tableDataTo" |
|
|
|
|
|
:tableFormRules="SettlementConfigurationDetailRules" |
|
|
|
|
|
@handleAddTable="handleAddTable('to')" |
|
|
|
|
|
@handleDeleteTable="(item, index)=>handleDeleteTable(item, index,'to')" |
|
|
|
|
|
@tableSelectionDelete="(selection)=>tableSelectionDelete(selection,'to')" |
|
|
|
|
|
@inpuFocus="inpuFocus" |
|
|
|
|
|
@inputStringBlur="inputStringBlur" |
|
|
|
|
|
:routeName="routeName" |
|
|
|
|
|
> |
|
|
|
|
|
<!-- <template v-slot="{ row }"> |
|
|
|
|
|
<slot :row="row"></slot> |
|
|
|
|
|
</template> --> |
|
|
|
|
|
</TableForm> |
|
|
|
|
|
</ContentWrap> |
|
|
|
|
|
</div> |
|
|
|
|
|
</template> |
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
</BasicForm> |
|
|
|
|
|
|
|
|
<!-- 详情 --> |
|
|
<!-- 详情 --> |
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="SettlementConfiguration.allSchemas" /> |
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="SettlementConfiguration.allSchemas" /> |
|
@ -59,13 +114,17 @@ |
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
<script setup lang="ts"> |
|
|
import download from '@/utils/download' |
|
|
import download from '@/utils/download' |
|
|
import { SettlementConfiguration,SettlementConfigurationRules } from './settlementConfiguration.data' |
|
|
import { SettlementConfiguration,SettlementConfigurationRules,SettlementConfigurationDetail,SettlementConfigurationDetailRules } from './settlementConfiguration.data' |
|
|
import * as SettlementConfigurationApi from '@/api/wms/settlementConfiguration' |
|
|
import * as SettlementConfigurationApi from '@/api/wms/settlementConfiguration' |
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
|
|
|
import { Warehouse } from '@/views/wms/basicDataManage/factoryModeling/warehouse/warehouse.data' |
|
|
|
|
|
import * as WarehouseApi from '@/api/wms/warehouse' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 上线结算配置管理 |
|
|
defineOptions({ name: 'SettlementConfiguration' }) |
|
|
defineOptions({ name: 'SettlementConfiguration' }) |
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
const message = useMessage() // 消息弹窗 |
|
@ -76,15 +135,129 @@ const routeName = ref() |
|
|
routeName.value = route.name |
|
|
routeName.value = route.name |
|
|
const tableColumns = ref(SettlementConfiguration.allSchemas.tableColumns) |
|
|
const tableColumns = ref(SettlementConfiguration.allSchemas.tableColumns) |
|
|
|
|
|
|
|
|
|
|
|
// 主子数据 提交 |
|
|
|
|
|
const submitForm = async (formType, submitData) => { |
|
|
|
|
|
let data = {...submitData} |
|
|
|
|
|
if(data.masterId){ |
|
|
|
|
|
data.id = data.masterId |
|
|
|
|
|
} |
|
|
|
|
|
data.fromWarehouseCode = tableDataFrom.value.map(item=>(item['warehouseCode'])).join(',') // 拼接子表数据参数 |
|
|
|
|
|
data.toWarehouseCode = tableDataTo.value.map(item=>(item['warehouseCode'])).join(',') // 拼接子表数据参数 |
|
|
|
|
|
console.log('新增参数',data) |
|
|
|
|
|
try { |
|
|
|
|
|
if (formType === 'create') { |
|
|
|
|
|
await SettlementConfigurationApi.createSettlementConfiguration(data) |
|
|
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
|
|
} else { |
|
|
|
|
|
await SettlementConfigurationApi.updateSettlementConfiguration(data) |
|
|
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
|
|
} |
|
|
|
|
|
basicFormRef.value.dialogVisible = false |
|
|
|
|
|
// 刷新当前列表 |
|
|
|
|
|
getList() |
|
|
|
|
|
} finally { |
|
|
|
|
|
basicFormRef.value.formLoading = false |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const tableFormKeys = {} |
|
|
|
|
|
SettlementConfigurationDetail.allSchemas.tableFormColumns.forEach((item) => { |
|
|
|
|
|
tableFormKeys[item.field] = item.default ? item.default : '' |
|
|
|
|
|
}) |
|
|
// 查询页面返回 |
|
|
// 查询页面返回 |
|
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
|
|
const searchTableSuccess = (formField, searchField, val, formRef, type, row) => { |
|
|
|
|
|
|
|
|
|
|
|
console.log('searchTableSuccess',formField, searchField, val, formRef, type, row ) |
|
|
nextTick(() => { |
|
|
nextTick(() => { |
|
|
const setV = {} |
|
|
if (formField == 'warehouseCode') { |
|
|
setV[formField] = val[0][searchField] |
|
|
if(addType.value== 'from'){ |
|
|
formRef.setValues(setV) |
|
|
// 来源 |
|
|
|
|
|
let warehouseCodes = val.filter(item=>tableDataFrom.value.find(item1=>item1['warehouseCode']==item['code'])) |
|
|
|
|
|
if(warehouseCodes.length>0){ |
|
|
|
|
|
warehouseCodes = warehouseCodes.map(item=>(item.code)) |
|
|
|
|
|
message.warning(`仓库代码${warehouseCodes.join(',')}已经存在`) |
|
|
|
|
|
} |
|
|
|
|
|
val = val.filter(item=>!tableDataFrom.value.find(item1=>item1['warehouseCode']==item['code'])) |
|
|
|
|
|
if(val.length==0) return |
|
|
|
|
|
val.forEach(item=>{ |
|
|
|
|
|
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item})) |
|
|
|
|
|
newRow['warehouseCode'] = item['code'] |
|
|
|
|
|
newRow['warehouseName'] = item['name'] |
|
|
|
|
|
tableDataFrom.value.push(newRow) |
|
|
|
|
|
}) |
|
|
|
|
|
}else{ |
|
|
|
|
|
// 目标 |
|
|
|
|
|
let warehouseCodes = val.filter(item=>tableDataTo.value.find(item1=>item1['warehouseCode']==item['code'])) |
|
|
|
|
|
if(warehouseCodes.length>0){ |
|
|
|
|
|
warehouseCodes = warehouseCodes.map(item=>(item.code)) |
|
|
|
|
|
message.warning(`仓库代码${warehouseCodes.join(',')}已经存在`) |
|
|
|
|
|
} |
|
|
|
|
|
val = val.filter(item=>!tableDataTo.value.find(item1=>item1['warehouseCode']==item['code'])) |
|
|
|
|
|
if(val.length==0) return |
|
|
|
|
|
val.forEach(item=>{ |
|
|
|
|
|
const newRow = JSON.parse(JSON.stringify({...tableFormKeys,...item})) |
|
|
|
|
|
newRow['warehouseCode'] = item['code'] |
|
|
|
|
|
newRow['warehouseName'] = item['name'] |
|
|
|
|
|
tableDataTo.value.push(newRow) |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
}else{ |
|
|
|
|
|
const setV = {} |
|
|
|
|
|
setV[formField] = val[0][searchField] |
|
|
|
|
|
if(formField == 'supplierCode'){ |
|
|
|
|
|
setV['supplierName'] = val[0]['name'] |
|
|
|
|
|
}else if(formField == 'itemCode'){ |
|
|
|
|
|
setV['itemName'] = val[0]['itemName'] |
|
|
|
|
|
setV['itemDesc1'] = val[0]['itemDesc1'] |
|
|
|
|
|
setV['itemDesc2'] = val[0]['itemDesc2'] |
|
|
|
|
|
} |
|
|
|
|
|
formRef.setValues(setV) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
|
|
|
|
// 来源库位 |
|
|
|
|
|
const tableDataFrom = ref([]) |
|
|
|
|
|
// 目标库位 |
|
|
|
|
|
const tableDataTo = ref([]) |
|
|
|
|
|
const addType = ref('') |
|
|
|
|
|
const handleAddTable = (type)=>{ |
|
|
|
|
|
addType.value = type |
|
|
|
|
|
//供应商代码 |
|
|
|
|
|
basicFormRef.value.opensearchTable('warehouseCode', 'code', '仓库信息', Warehouse.allSchemas, WarehouseApi.getWarehousePage,[{ |
|
|
|
|
|
key: 'available', |
|
|
|
|
|
value: 'TRUE', |
|
|
|
|
|
isMainValue: false |
|
|
|
|
|
}],true,'tableForm1') |
|
|
|
|
|
//修改弹窗宽度 |
|
|
|
|
|
basicFormRef.value.changeDialogWidth('1085px') |
|
|
|
|
|
} |
|
|
|
|
|
// 删除明细 |
|
|
|
|
|
const handleDeleteTable = (item, index, type) => { |
|
|
|
|
|
if(type == 'from'){ |
|
|
|
|
|
// 来源 |
|
|
|
|
|
tableDataFrom.value.splice(index, 1) |
|
|
|
|
|
}else { |
|
|
|
|
|
// 目标 |
|
|
|
|
|
tableDataTo.value.splice(index, 1) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
// 批量删除 |
|
|
|
|
|
const tableSelectionDelete = (selection,type) => { |
|
|
|
|
|
if(type == 'from'){ |
|
|
|
|
|
// 来源 |
|
|
|
|
|
tableDataFrom.value = tableDataFrom.value.filter(item => !selection.includes(item)) |
|
|
|
|
|
}else{ |
|
|
|
|
|
// 目标 |
|
|
|
|
|
tableDataTo.value = tableDataTo.value.filter(item => !selection.includes(item)) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
const inpuFocus = ()=>{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
const inputStringBlur = ()=>{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
// 字段设置 更新主列表字段 |
|
|
// 字段设置 更新主列表字段 |
|
|
const updataTableColumns = (val) => { |
|
|
const updataTableColumns = (val) => { |
|
|
tableColumns.value = val |
|
|
tableColumns.value = val |
|
@ -140,6 +313,10 @@ const butttondata = [ |
|
|
// 列表-操作按钮事件 |
|
|
// 列表-操作按钮事件 |
|
|
const buttonTableClick = async (val, row) => { |
|
|
const buttonTableClick = async (val, row) => { |
|
|
if (val == 'edit') { // 编辑 |
|
|
if (val == 'edit') { // 编辑 |
|
|
|
|
|
let res = await SettlementConfigurationApi.editSettlementConfiguration(row.id) |
|
|
|
|
|
console.log('编辑',res) |
|
|
|
|
|
tableDataFrom.value = res.fromWarehouseCodeList |
|
|
|
|
|
tableDataTo.value = res.toWarehouseCodeList |
|
|
openForm('update', row) |
|
|
openForm('update', row) |
|
|
} else if (val == 'delete') { // 删除 |
|
|
} else if (val == 'delete') { // 删除 |
|
|
handleDelete(row.id) |
|
|
handleDelete(row.id) |
|
@ -152,29 +329,7 @@ const openForm = (type: string, row?: any) => { |
|
|
basicFormRef.value.open(type, row) |
|
|
basicFormRef.value.open(type, row) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// form表单提交 |
|
|
|
|
|
const formsSuccess = async (formType,data) => { |
|
|
|
|
|
var isHave =SettlementConfiguration.allSchemas.formSchema.some(function (item) { |
|
|
|
|
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
|
|
|
|
|
}); |
|
|
|
|
|
if(isHave){ |
|
|
|
|
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
|
|
|
|
|
message.error('失效时间要大于生效时间') |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
if(data.activeTime==0)data.activeTime = null; |
|
|
|
|
|
if(data.expireTime==0)data.expireTime = null; |
|
|
|
|
|
if (formType === 'create') { |
|
|
|
|
|
await SettlementConfigurationApi.createSettlementConfiguration(data) |
|
|
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
|
|
} else { |
|
|
|
|
|
await SettlementConfigurationApi.updateSettlementConfiguration(data) |
|
|
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
|
|
} |
|
|
|
|
|
basicFormRef.value.dialogVisible = false |
|
|
|
|
|
getList() |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** 详情操作 */ |
|
|
/** 详情操作 */ |
|
|
const detailRef = ref() |
|
|
const detailRef = ref() |
|
|