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.
 
 
 

469 lines
15 KiB

<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search ref="seachRef" :schema="CustomerToolApportStatementForecastMain.allSchemas.searchSchema" @search="searchClick" @reset="searchClick" @onChange="onSearchChange"/>
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="CustomerToolApportStatementForecastMain.allSchemas"
/>
<!-- 列表 -->
<ContentWrap>
<Table
:columns="tableColumns"
:data="tableObject.tableList"
:loading="tableObject.loading"
:pagination="{
total: tableObject.total
}"
v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
>
<template #number="{row}">
<el-button type="primary" link @click="openDetail(row, '代码', row.number)">
<span>{{ row.number }}</span>
</el-button>
</template>
<template #action="{ row , $index }">
<ButtonBaseMore :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" />
</template>
</Table>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<BasicForm
ref="basicFormRef"
@success="formsSuccess"
:rules="CustomerToolApportStatementForecastMainRules"
:formAllSchemas="CustomerToolApportStatementForecastMain.allSchemas"
:apiUpdate="CustomerToolApportStatementForecastMainApi.updateCustomerToolApportStatementForecastMain"
:apiCreate="CustomerToolApportStatementForecastMainApi.createCustomerToolApportStatementForecastMain"
@searchTableSuccess="searchTableSuccess"
:isBusiness="false"
/>
<!-- 详情 -->
<!-- <Detail ref="detailRef" :isBasic="true" :allSchemas="CustomerToolApportStatementForecastMain.allSchemas" /> -->
<!-- 详情 -->
<Detail
ref="detailRef"
:isBasic="false"
:allSchemas="CustomerToolApportStatementForecastMain.allSchemas"
:detailAllSchemas="DetailAllSchemas"
:apiPage="apiPage"
:tabsExtend="tabsExtend"
:tabs="[{
label: '明细',
prop: 'Detail'
},{
label: '预测与对账单差异',
prop: 'ForecastWithBilltDifference'
}]"
:otherHeadButttonData="otherHeadButttonData"
:detailButtonIsShowAdd="false"
:detailButtonIsShowEdit="false"
:detailButtonIsShowDelete="false"
@changeTabs="changeTabs"
:tableObjectExtend="tableObjectExtend"
@buttonBaseClick="detailButtonBaseClick"
@changeDetailList="changeDetailList"
>
<template #amountVariance="{ row }" v-if="tabCurrent.prop == 'ForecastWithBilltDifference'">
<span
:style="{
color: row.amountVariance > 0 ? '#409eff' : row.amountVariance < 0 ? 'red' : '#000'
}"
>{{ row.amountVariance }}</span
>
</template>
</Detail>
<!-- 导入 -->
<ImportCustomerStatementForecastForm
ref="importFormRef"
url="/wms/customer-tool-apport-statement-forecast-main/import"
:importTemplateData="importTemplateData"
@success="importSuccess"
/>
</template>
<script setup lang="ts">
import download from '@/utils/download'
import { CustomerToolApportStatementForecastMain,CustomerToolApportStatementForecastMainRules,CustomerToolApportStatementForecastDetail,CustomerToolApportStatementForecastDetailRules,ForecastWithBillDifference } from './customerToolApportStatementForecastMain.data'
import * as CustomerToolApportStatementForecastMainApi from '@/api/wms/customerToolApportStatementForecastMain'
import * as CustomerToolApportStatementForecastDetailApi from '@/api/wms/customerToolApportStatementForecastDetail'
import ImportCustomerStatementForecastForm from '@/components/ImportForm/src/ImportCustomerStatementForecastForm.vue'
import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue'
import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
import Detail from '@/components/Detail/src/Detail.vue'
// 之后要删掉的代码
import { CustomerStatementMain, CustomerStatementMainRules,CustomerStatementDetail,CustomerStatementDetailRules,CustomerStatementReconciliation,CustomerStatementShareReconciliation} from '../customerStatement/customerStatementMain.data'
import * as CustomerStatementMainApi from '@/api/wms/customerStatementMain'
import * as CustomerStatementDetailApi from '@/api/wms/customerStatementDetail'
import { formatDate } from '@/utils/formatTime'
defineOptions({ name: 'CustomerToolApportStatementForecastMain' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
const route = useRoute() // 路由信息
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(CustomerToolApportStatementForecastMain.allSchemas.tableColumns)
const apiPage = ref(CustomerStatementDetailApi.getCustomerStatementDetailPage)
const DetailAllSchemas = ref(CustomerToolApportStatementForecastDetail.allSchemas)
const tabsExtend = ref(false)
const tableObjectExtend = ref()
const otherHeadButttonData = ref()
// 查询页面返回
const searchTableSuccess = (formField, searchField, val, formRef) => {
nextTick(() => {
const setV = {}
setV[formField] = val[0][searchField]
formRef.setValues(setV)
})
}
// 字段设置 更新主列表字段
const updataTableColumns = (val) => {
tableColumns.value = val
}
const { tableObject, tableMethods } = useTable({
getListApi: CustomerToolApportStatementForecastMainApi.getCustomerToolApportStatementForecastMainPage // 分页接口
// getListApi: CustomerStatementMainApi.getCustomerStatementMainPage // 分页接口
})
// 获得表格的各种操作
const { getList, setSearchParams } = tableMethods
// 列表头部按钮
const HeadButttondata = [
defaultButtons.defaultImportBtn({hasPermi:'wms:customer-tool-apport-statement-forecast-main:import'}), // 导入
defaultButtons.defaultExportBtn({hasPermi:'wms:customer-tool-apport-statement-forecast-main:export'}), // 导出
defaultButtons.defaultFreshBtn(null), // 刷新
defaultButtons.defaultFilterBtn(null), // 筛选
defaultButtons.defaultSetBtn(null), // 设置
// {
// label: '自定义扩展按钮',
// name: 'zdy',
// hide: false,
// type: 'primary',
// icon: 'Select',
// color: ''
// },
]
// 头部按钮事件
const buttonBaseClick = (val, item) => {
if (val == 'add') { // 新增
openForm('create')
} else if (val == 'import') {
// 导入
handleImport()
} else if (val == 'export') { // 导出
handleExport()
} else if (val == 'refresh') { // 刷新
getList()
} else if (val == 'filtrate') { // 筛选
} else { // 其他按钮
console.log('其他按钮', item)
}
}
// 根据状态返回该按钮是否显示
const isShowMainButton = (row, val) => {
if (val.indexOf(row.status) > -1) {
return false
} else {
return true
}
}
// 列表-操作按钮
const butttondata = (row, $index) => {
const findIndex = row['masterId']
? tableObject.tableList.findIndex((item) => item['masterId'] == row['masterId'])
: -1
if (findIndex > -1 && findIndex < $index) {
return []
}
return [
// defaultButtons.mainListEditBtn({hasPermi:'wms:customerStatementMain:update'}), // 编辑
// defaultButtons.mainListDeleteBtn({hasPermi:'wms:customerStatementMain:delete'}), // 删除
{
label: t('ts.重新对比'),
name: 'rematch',
hide: false,
type: 'primary',
icon: '',
color: '',
hasPermi: 'wms:customer-statement-main:recontrast',
link: true // 文本展现按钮
}]
}
// 列表-操作按钮事件
const buttonTableClick = async (val, row) => {
if (val == 'edit') { // 编辑
openForm('update', row)
} else if (val == 'delete') { // 删除
handleDelete(row.id)
} else if (val == 'rematch') {
//重新比对
tapRematch(row.id)
}
}
//点击重新比对方法
const tapRematch = async (id: number) => {
try {
// 确认
await message.confirm(t('ts.是否重新对比'))
await CustomerToolApportStatementForecastMainApi.recontrast(id)
await message.success(t('ts.重新对比成功'))
// 发起导出
//exportLoading.value = true
} catch {
} finally {
// 刷新列表
await getList()
}
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type: string, row?: any) => {
basicFormRef.value.open(type, row)
}
// form表单提交
const formsSuccess = async (formType,data) => {
var isHave =CustomerToolApportStatementForecastMain.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 CustomerToolApportStatementForecastMainApi.createCustomerToolApportStatementForecastMain(data)
message.success(t('common.createSuccess'))
} else {
await CustomerToolApportStatementForecastMainApi.updateCustomerToolApportStatementForecastMain(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
}
/** 详情操作 */
const detailRef = ref()
const chooseRow = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
chooseRow.value = row
detailRef.value.openDetail(row, titleName, titleValue, 'basicCustomerToolApportStatementForecastMain')
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await CustomerToolApportStatementForecastMainApi.deleteCustomerToolApportStatementForecastMain(id)
message.success(t('common.delSuccess'))
// 刷新列表
await getList()
} catch {}
}
/** 导出按钮操作 */
const exportLoading = ref(false) // 导出的加载中
const handleExport = async () => {
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await CustomerToolApportStatementForecastMainApi.exportCustomerToolApportStatementForecastMain(tableObject.params)
download.excel(data, '客户模具分摊对账单预测主表(WMS).xlsx')
} catch {
} finally {
exportLoading.value = false
}
}
/** 导入 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
// 导入附件弹窗所需的参数
const importTemplateData = reactive({
templateUrl: '',
templateTitle: '客户模具分摊对账单预测主表(WMS)导入模版.xlsx'
})
// 导入成功之后
const importSuccess = () => {
getList()
}
// 筛选提交
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters
}
getList() // 刷新当前列表
}
const tabCurrent = ref({})
const changeTabs = async (item) => {
tabCurrent.value = item
if (item.prop == 'Detail') {
// 点击明细按钮
tabsExtend.value = true
// 当前物料代码作为条件
tableObjectExtend.value = [{
key: 'masterId',
value: chooseRow.value.id
}]
apiPage.value = await CustomerToolApportStatementForecastDetailApi.getCustomerToolApportStatementForecastDetailPage
DetailAllSchemas.value = CustomerToolApportStatementForecastDetail.allSchemas
otherHeadButttonData.value = [{
label: t(`ts.导出`).replace('ts.', ''),
name: 'exportDetail',
hide: false,
type: 'success',
icon: 'ep:download',
color: '',
hasPermi: ''
}]
} else if (item.prop == 'ForecastWithBilltDifference') {
// 点击预测与对账单差异
tabsExtend.value = true
// 当前物料代码作为条件
tableObjectExtend.value = [{
key: 'masterId',
value: chooseRow.value.id
}]
DetailAllSchemas.value = ForecastWithBillDifference.allSchemas
apiPage.value = await CustomerToolApportStatementForecastDetailApi.getCustomerToolApportStatementForecastComparisonPage
otherHeadButttonData.value = [
{
label: t(`ts.导出`).replace('ts.', ''),
name: 'exportForecastWithBilltDifference',
hide: false,
type: 'success',
icon: 'ep:download',
color: '',
hasPermi: ''
}]
} else{
tableObjectExtend.value = []
tabsExtend.value = false
apiPage.value = ''
otherHeadButttonData.value = []
}
}
const changeDetailList = (apiPage) =>{
if (apiPage == CustomerToolApportStatementForecastDetailApi.getCustomerToolApportStatementForecastDetailPage) {
detailRef.value.tableObjectRef.tableList.forEach(element => {
element.forecastAllocationAmount = element.forecastAllocationAmount.toFixed(5)
});
} else if(apiPage == CustomerToolApportStatementForecastDetailApi.getCustomerToolApportStatementForecastComparisonPage) {
detailRef.value.tableObjectRef.tableList.forEach(element => {
element.forecastAllocationAmount = element.forecastAllocationAmount.toFixed(5)
element.allocationAmount = element.allocationAmount.toFixed(5)
element.amountVariance = element.amountVariance.toFixed(5)
});
}
}
// 点击子表按钮事件
const detailButtonBaseClick = (val, item, detailTableObject) => {
if (val == 'exportForecastWithBilltDifference') {
// 子表预测与对账单差异
handleExportComparisonDetail(detailTableObject)
}else if (val == 'exportDetail') {
// 子表导出明细
handleExportDetail(detailTableObject)
}
}
/** 导出按钮操作 */
const handleExportComparisonDetail = async (detailTableObject) => {
console.log('detailTableObject',detailTableObject)
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await CustomerToolApportStatementForecastDetailApi.exportCustomerToolApportStatementForecastComparisonDetail(
detailTableObject.params
)
download.excel(data, `预测与对账单差异【${formatDate(new Date())}】.xlsx`)
} catch {
} finally {
exportLoading.value = false
}
}
// 子表导出明细
const handleExportDetail = async (detailTableObject) => {
console.log('detailTableObject',detailTableObject)
try {
// 导出的二次确认
await message.exportConfirm()
// 发起导出
exportLoading.value = true
const data = await CustomerToolApportStatementForecastDetailApi.exportCustomerToolApportStatementForecastDetail(
detailTableObject.params
)
download.excel(data, `客户模具分摊对账单预测明细【${formatDate(new Date())}】.xlsx`)
} catch {
} finally {
exportLoading.value = false
}
}
const seachRef = ref()
const onSearchChange = (field, value)=>{
if(field=='customerCode'){
if(value.length>0){
if(value[value.length-1]=='ALL'){
//全选
seachRef.value.setFormValues({
customerCode:['ALL']
})
}else{
seachRef.value.setFormValues({
customerCode:value.filter(item=>item!='ALL')
})
}
}
}
}
const searchClick = async (data)=>{
console.log('查询',data)
setSearchParams({...data,customerCode:data.customerCode.filter(item=>item!='ALL')})
}
/** 初始化 **/
onMounted(async () => {
getList()
importTemplateData.templateUrl = await CustomerToolApportStatementForecastMainApi.importTemplate()
})
</script>