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.
451 lines
14 KiB
451 lines
14 KiB
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<Search ref="searchRef" :schema="SupplierApbalanceMain.allSchemas.searchSchema" @search="searchClick" @reset="resetClick" >
|
|
<template #year>
|
|
<el-select v-model="year" :placeholder="t(`ts.请选择年`)" @change="(value)=>selectChange(value,'year')">
|
|
<el-option v-for="dict in yearList" :key="dict.value" :label="dict.label" :value="dict.value"/>
|
|
</el-select>
|
|
</template>
|
|
<template #month>
|
|
<el-select v-model="month" :placeholder="t(`ts.请选择月`)" @change="(value)=>selectChange(value,'month')">
|
|
<el-option v-for="dict in monthList" :key="dict.value" :label="dict.label" :value="dict.value"/>
|
|
</el-select>
|
|
</template>
|
|
<template #day>
|
|
<el-select v-model="day" :placeholder="t(`ts.请选择日`)" @change="(value)=>selectChange(value,'day')">
|
|
<el-option v-for="dict in dayList" :key="dict.value" :label="dict.label" :value="dict.value"/>
|
|
</el-select>
|
|
</template>
|
|
<template #actionMoreTop>
|
|
<el-button type="primary" @click="confirmationHandle">
|
|
<Icon class="mr-5px" icon="ep:" />
|
|
{{t(`ts.询证`)}}
|
|
<Icon class="ml-5px" icon="ep:" />
|
|
</el-button>
|
|
</template>
|
|
</Search>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表头部 -->
|
|
<TableHead
|
|
:HeadButttondata="HeadButttondata"
|
|
@button-base-click="buttonBaseClick"
|
|
:routeName="routeName"
|
|
@updataTableColumns="updataTableColumns"
|
|
@searchFormClick="searchFormClick"
|
|
:allSchemas="SupplierApbalanceMain.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 #id="{row}">
|
|
<el-button type="primary" link @click="openDetail(row, 'ID', row.id)">
|
|
<span>{{ row.id }}</span>
|
|
</el-button>
|
|
</template>
|
|
<template #action="{ row }">
|
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
|
|
</template>
|
|
</Table>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<BasicForm
|
|
ref="basicFormRef"
|
|
@success="formsSuccess"
|
|
:rules="SupplierApbalanceMainRules"
|
|
:formAllSchemas="SupplierApbalanceMain.allSchemas"
|
|
:apiUpdate="SupplierApbalanceMainApi.updateSupplierApbalanceMain"
|
|
:apiCreate="SupplierApbalanceMainApi.createSupplierApbalanceMain"
|
|
@searchTableSuccess="searchTableSuccess"
|
|
:isBusiness="false"
|
|
/>
|
|
|
|
<!-- 详情 -->
|
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="SupplierApbalanceMain.allSchemas" />
|
|
<Detail ref="detailRef"
|
|
:isBasic="false"
|
|
:allSchemas="SupplierApbalanceMain.allSchemas"
|
|
:detailAllSchemasRules="SupplierApbalanceDetailRules"
|
|
:detailAllSchemas="SupplierApbalanceDetail.allSchemas"
|
|
:apiPage="SupplierApbalanceDetailApi.getSupplierApbalanceDetailPage"
|
|
:detailButtonIsShowAdd=false
|
|
:detailButtonIsShowEdit=false
|
|
:detailButtonIsShowDelete=false
|
|
:slotDetailTabList="[
|
|
{
|
|
label: t(`ts.回调函明细`),
|
|
prop: 'adjustment'
|
|
}
|
|
]"
|
|
>
|
|
<template #adjustment>
|
|
<TableFormAdjustment :rowData="rowData" :adjustmentData="adjustmentData" :isDetail="true"/>
|
|
</template>
|
|
</Detail>
|
|
|
|
<!-- 导入 -->
|
|
<ImportForm ref="importFormRef" url="/wms/supplier-apbalance-main/import" :importTemplateData="importTemplateData" @success="importSuccess" />
|
|
<AdjustmentDialog ref="adjustment" @updateList="getList"/>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import download from '@/utils/download'
|
|
import { SupplierApbalanceMain,SupplierApbalanceMainRules } from './supplierApbalanceMain.data'
|
|
import { SupplierApbalanceDetail,SupplierApbalanceDetailRules } from '../supplierApbalanceDetail/supplierApbalanceDetail.data'
|
|
import * as SupplierApbalanceMainApi from '@/api/wms/supplierApbalanceMain'
|
|
import * as SupplierApbalanceDetailApi from '@/api/wms/supplierApbalanceDetail'
|
|
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 * as BasicSpotCheckOptionApi from "@/api/eam/basicSpotCheckOption";
|
|
import TableFormAdjustment from '@/components/TableFormAdjustment/src/TableFormAdjustment.vue'
|
|
import AdjustmentDialog from '@/components/TableFormAdjustment/src/AdjustmentDialog.vue'
|
|
import dayjs from 'dayjs'
|
|
|
|
import {getJmreportBaseUrl} from "@/utils/systemParam";
|
|
import {getAccessToken} from "@/utils/auth";
|
|
import { usePageLoading } from '@/hooks/web/usePageLoading'
|
|
const { loadStart, loadDone } = usePageLoading()
|
|
// 供应商对账管理
|
|
defineOptions({ name: 'SupplierApbalanceMain' })
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
|
|
const route = useRoute() // 路由信息
|
|
const routeName = ref()
|
|
routeName.value = route.name
|
|
const tableColumns = ref(SupplierApbalanceMain.allSchemas.tableColumns)
|
|
|
|
// 查询页面返回
|
|
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: SupplierApbalanceMainApi.getSupplierApbalanceMainPage // 分页接口
|
|
})
|
|
tableObject.params.actionType = 'search'
|
|
|
|
// 获得表格的各种操作
|
|
const { getList, setSearchParams } = tableMethods
|
|
|
|
// 列表头部按钮
|
|
const HeadButttondata = [
|
|
//defaultButtons.defaultAddBtn({hasPermi:'wms:supplier-apbalance-main:create'}), // 新增
|
|
//defaultButtons.defaultImportBtn({hasPermi:'wms:supplier-apbalance-main:import'}), // 导入
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:supplier-apbalance-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 butttondata = [
|
|
defaultButtons.mainListPrintBtn({hasPermi:'wms:supplier-apbalance-main:update'}), // 打印
|
|
// defaultButtons.mainListReplyInputBtn({hasPermi:'wms:supplier-apbalance-main:update'}), // 回函录入
|
|
]
|
|
|
|
|
|
// 列表-操作按钮事件
|
|
const buttonTableClick = async (val, row) => {
|
|
if (val == 'edit') { // 编辑
|
|
openForm('update', row)
|
|
} else if (val == 'delete') { // 删除
|
|
handleDelete(row.id)
|
|
} else if (val == 'print') { // 删除
|
|
handlePrint(row)
|
|
} else if (val == 'replyInput') { // 删除
|
|
handleReplyInput(row)
|
|
}
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const basicFormRef = ref()
|
|
const openForm = (type: string, row?: any) => {
|
|
basicFormRef.value.open(type, row)
|
|
}
|
|
|
|
// form表单提交
|
|
const formsSuccess = async (formType,data) => {
|
|
var isHave =SupplierApbalanceMain.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(t('ts.失效时间要大于生效时间'))
|
|
return;
|
|
}
|
|
}
|
|
if(data.activeTime==0)data.activeTime = null;
|
|
if(data.expireTime==0)data.expireTime = null;
|
|
if (formType === 'create') {
|
|
await SupplierApbalanceMainApi.createSupplierApbalanceMain(data)
|
|
message.success(t('common.createSuccess'))
|
|
} else {
|
|
await SupplierApbalanceMainApi.updateSupplierApbalanceMain(data)
|
|
message.success(t('common.updateSuccess'))
|
|
}
|
|
basicFormRef.value.dialogVisible = false
|
|
getList()
|
|
}
|
|
|
|
/** 详情操作 */
|
|
const detailRef = ref()
|
|
const rowData = ref({})
|
|
const adjustmentData = ref({})
|
|
|
|
const openDetail = async (row: any, titleName: any, titleValue: any) => {
|
|
const res = await SupplierApbalanceMainApi.getSupplierApbalanceMain(row.id)
|
|
console.log('res',res)
|
|
rowData.value = row
|
|
adjustmentData.value = res
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'exportSupplierApbalanceMain')
|
|
|
|
}
|
|
|
|
//打印
|
|
const BASE_URL = getJmreportBaseUrl()
|
|
const src = ref(BASE_URL + '/jmreport/view/973017727126409216?token=' + getAccessToken())
|
|
const handlePrint = async (row) => {
|
|
window.open(src.value+'&id='+row.id+'&searchTime='+`${tableObject.params.searchTime||''}`+'&actionType='+`${tableObject.params.actionType||''}`)
|
|
}
|
|
|
|
|
|
const adjustment = ref()
|
|
//回函录入
|
|
const handleReplyInput = async (row) => {
|
|
const res = await SupplierApbalanceMainApi.getSupplierApbalanceMain(row.id)
|
|
|
|
adjustment.value.open(row,res)
|
|
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await SupplierApbalanceMainApi.deleteSupplierApbalanceMain(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
loadStart()
|
|
const data = await SupplierApbalanceMainApi.exportSupplierApbalanceMain(tableObject.params)
|
|
download.excel(data, '供应商余额明细主.xlsx')
|
|
} catch {
|
|
} finally {
|
|
loadDone()
|
|
}
|
|
}
|
|
|
|
/** 导入 */
|
|
const importFormRef = ref()
|
|
const handleImport = () => {
|
|
importFormRef.value.open()
|
|
}
|
|
// 导入附件弹窗所需的参数
|
|
const importTemplateData = reactive({
|
|
templateUrl: '',
|
|
templateTitle: '供应商余额明细主导入模版.xlsx'
|
|
})
|
|
// 导入成功之后
|
|
const importSuccess = () => {
|
|
getList()
|
|
}
|
|
|
|
// 筛选提交
|
|
const searchFormClick = (searchData) => {
|
|
tableObject.params = {
|
|
isSearch: true,
|
|
filters: searchData.filters
|
|
}
|
|
getList() // 刷新当前列表
|
|
}
|
|
|
|
const year = ref('')
|
|
const month = ref('')
|
|
const day = ref('')
|
|
// 年份
|
|
const yearList = ref([])
|
|
const getDefaultYear = ()=>{
|
|
yearList.value = []
|
|
let current = new Date().getFullYear()
|
|
for(let i=-10;i<=10;i++){
|
|
yearList.value.push({
|
|
label:current+i,
|
|
value:current+i
|
|
})
|
|
}
|
|
}
|
|
// 月份
|
|
const daysInMonths = ref([])
|
|
const monthList = ref([])
|
|
const getMonthDay = async ()=>{
|
|
getDefaultYear()
|
|
monthList.value = []
|
|
let res = await SupplierApbalanceMainApi.getMonthDay()
|
|
console.log('获取年月日',res)
|
|
if(res){
|
|
daysInMonths.value = res
|
|
res.forEach(item => {
|
|
monthList.value.push({
|
|
label:item['beginMonth'],
|
|
value:item['beginMonth'],
|
|
})
|
|
});
|
|
console.log('monthList',monthList.value)
|
|
}
|
|
}
|
|
// 询证回调
|
|
const confirmationHandle = async ()=>{
|
|
let searchData = await searchRef.value.getSearchFormData()
|
|
if(!year.value||!month.value||!day.value){
|
|
message.error(t(`ts.${'请选择日期后再点击询证'}`))
|
|
return
|
|
}
|
|
if(month.value.length==1){
|
|
month.value = '0'+month.value
|
|
}
|
|
if((''+day.value).length==1){
|
|
day.value = '0' + day.value
|
|
}
|
|
if(year.value&&month.value&&day.value){
|
|
// 年-月-日 `${year.value}-${month.value}-${day.value}`
|
|
}
|
|
//供应商代码 searchData.ttSupplier
|
|
let param = {
|
|
"ttCompany":searchData.ttCompany,
|
|
"ttSupplier":searchData.ttSupplier,
|
|
"searchTime": `${year.value}-${month.value}-${day.value}`
|
|
}
|
|
try {
|
|
loadStart()
|
|
await SupplierApbalanceMainApi.confirmationPage(param)
|
|
} catch {
|
|
} finally {
|
|
searchClick(searchData,'confirmation')
|
|
// getList() // 刷新当前列表
|
|
loadDone()
|
|
}
|
|
}
|
|
const searchRef = ref()
|
|
// 日期
|
|
const dayList = ref([])
|
|
const selectChange = (value,field)=>{
|
|
searchRef.value.setFormValues({
|
|
[field]:value,
|
|
})
|
|
if(field=='month'){
|
|
//重置日期
|
|
dayList.value = []
|
|
//更新日期数组
|
|
let dayObj = daysInMonths.value.find(item=>item['beginMonth']==month.value)
|
|
if(dayObj){
|
|
if(Array.isArray(dayObj['beginDay'])){
|
|
dayList.value = dayObj['beginDay'].map(item=>({
|
|
label:item,
|
|
value:item
|
|
}))
|
|
}
|
|
}
|
|
if(dayList.value.length>0){
|
|
day.value = dayList.value[0]['value']
|
|
searchRef.value.setFormValues({
|
|
'day':day.value,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
const resetClick = async (data)=>{
|
|
year.value = ''
|
|
month.value = ''
|
|
day.value = ''
|
|
data['searchTime'] = ''
|
|
searchClick(data)
|
|
}
|
|
|
|
const searchClick = async (data,actionType="search")=>{
|
|
if((data['year']||data['month']||data['day'])&&(!data['year']||!data['month']||!data['day'])){
|
|
message.error('请选择年月日')
|
|
return
|
|
}
|
|
if(data['month'].length==1){
|
|
data['month'] = '0'+data['month']
|
|
}
|
|
if((''+data['day']).length==1){
|
|
data['day'] = '0' + data['day']
|
|
}
|
|
if(data['year']&&data['month']&&data['day']){
|
|
data['searchTime'] = `${data['year']}-${data['month']}-${data['day']}`
|
|
}
|
|
tableObject.params.actionType = actionType
|
|
setSearchParams(data)
|
|
}
|
|
/** 初始化 **/
|
|
onMounted(async () => {
|
|
getMonthDay()
|
|
getList()
|
|
importTemplateData.templateUrl = await SupplierApbalanceMainApi.importTemplate()
|
|
})
|
|
|
|
</script>
|
|
|