Browse Source

Merge branch 'master_hella' into hella_zhaoxuebing

hella_zhaoxuebing
赵雪冰 2 months ago
parent
commit
153fcd1f47
  1. 75
      src/api/wms/customerDeliveryForecast/index.ts
  2. 150
      src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/customerDeliveryForecast.data.ts
  3. 148
      src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/index.vue

75
src/api/wms/customerDeliveryForecast/index.ts

@ -1,4 +1,5 @@
import request from '@/config/axios' import request from '@/config/axios'
import { isString } from '@/utils/is'
export interface CustomerDeliveryForecastVO { export interface CustomerDeliveryForecastVO {
schdSite: string schdSite: string
@ -19,15 +20,20 @@ export interface CustomerDeliveryForecastVO {
schdCustref: string schdCustref: string
schdPcrQty: string schdPcrQty: string
available: string available: string
schdRlseId: string
} }
// 查询客户发货预测列表 // 查询客户发货预测列表
export const getCustomerDeliveryForecastPage = async (params) => { export const getCustomerDeliveryForecastPage = async (params) => {
if (params.isSearch) { if (params.isSearch) {
delete params.isSearch delete params.isSearch
if(params.flag){
delete params.flag
}
const data = {...params} const data = {...params}
return await request.post({ url: '/wms/customer-delivery-forecast/senior', data }) return await request.post({ url: '/wms/customer-delivery-forecast/senior', data })
} else { } else {
params = getPageParams(params)
return await request.get({ url: `/wms/customer-delivery-forecast/page`, params }) return await request.get({ url: `/wms/customer-delivery-forecast/page`, params })
} }
} }
@ -61,3 +67,72 @@ export const exportCustomerDeliveryForecast = async (params) => {
export const importTemplate = () => { export const importTemplate = () => {
return request.download({ url: '/wms/customer-delivery-forecast/get-import-template' }) return request.download({ url: '/wms/customer-delivery-forecast/get-import-template' })
} }
// 要货预测-列表和头部请求参数
const getPageParams = (params)=>{
// 到货日期
if(params.schdDate&&params.schdDate.length>0){
if(isString(params.schdDate[0])){
params.startDate = params.schdDate[0]
}else{
params.startDate = params.schdDate[0].format('YYYY-MM-DD')
}
}
if(params.schdDate&&params.schdDate.length>1){
if(isString(params.schdDate[1])){
params.endDate = params.schdDate[1]
}else{
params.endDate = params.schdDate[1].format('YYYY-MM-DD')
}
}
console.log(params.schdDate)
if (!params.schdDate || params.schdDate.length == 0) {
params.startDate = ''
params.endDate = ''
}
// 物料代码
if(params.schdPart&&params.schdPart.length>0){
let keyValue = params.schdPart.split(' ')
keyValue.forEach(item=>{item = item.trim()})
params.schdParts = keyValue.join(',')
}
params.schdPart = ''
// 版本号
if(params.schdRlseId&&params.schdRlseId.length>0){
let keyValue = params.schdRlseId.split(' ')
keyValue.forEach(item=>{item = item.trim()})
params.schdRlseIds = keyValue.join(',')
}
params.schdRlseId = ''
return params
}
// 查询发货预测主列表
export const getPageTableHead = async (params) => {
params = getPageParams(params)
console.log('params',params)
return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHead`, params })
}
// 查询发货预测主列表
export const getPageTableHeadToMonth = async (params) => {
params = getPageParams(params)
console.log('params',params)
return await request.get({ url: `/wms/customer-delivery-forecast/queryPageTableHeadToMonth`, params })
}
// 查询客户发货预测列表
export const getCustomerDeliveryForecastPageToMonth = async (params) => {
params = getPageParams(params)
return await request.get({ url: `/wms/customer-delivery-forecast/pageToMonth`, params })
}
// 查询版本号
export const queryVersion = async (params) => {
return await request.get({ url: `/wms/customer-delivery-forecast/queryVersion`, params })
}

150
src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/customerDeliveryForecast.data.ts

@ -1,6 +1,35 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime' import { dateFormatter } from '@/utils/formatTime'
import dayjs from 'dayjs'
import * as CustomerDeliveryForecastApi from '@/api/wms/customerDeliveryForecast'
import * as itembasicApi from '@/api/wms/itembasic'
import { Supplieritem } from '@/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data'
import { Itembasic } from '../../itemManage/itembasic/itembasic.data'
Supplieritem.allSchemas.searchSchema = Supplieritem.allSchemas.searchSchema.filter(item=>item.field!="allowOverShipment")
export const Version = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '订单号',
field: 'schdOrder',
sort: 'custom',
},
{
label: '订单行',
field: 'schdLine',
sort: 'custom',
},
{
label: '物料编码',
field: 'schdPart',
isSearch:true,
sort: 'custom',
},
{
label: '版本',
field: 'schdRlseId',
sort: 'custom',
}
]))
// 表单校验 // 表单校验
export const CustomerDeliveryForecastRules = reactive({ export const CustomerDeliveryForecastRules = reactive({
}) })
@ -10,25 +39,32 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
label: '地点代码', label: '地点代码',
field: 'schdSite', field: 'schdSite',
sort: 'custom', sort: 'custom',
isSearch: true isTable:false,
isForm: false,
}, },
{ {
label: '销售日程单号', label: '销售日程单号',
field: 'schdOrder', field: 'schdOrder',
sort: 'custom', sort: 'custom',
isSearch: true table: {
width: 110
},
}, },
{ {
label: '日程单行号', label: '日程单行号',
field: 'schdLine', field: 'schdLine',
sort: 'custom', sort: 'custom',
isSearch: true table: {
width: 110
},
}, },
{ {
label: '客户代码', label: '客户代码',
field: 'schdCust', field: 'schdCust',
sort: 'custom', sort: 'custom',
isSearch: true table: {
width: 100
},
}, },
{ {
label: '发货至', label: '发货至',
@ -39,21 +75,82 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
label: '码头', label: '码头',
field: 'schdDock', field: 'schdDock',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '物料编码', label: '物料编码',
field: 'schdPart', field: 'schdPart',
sort: 'custom', sort: 'custom',
isSearch:true,
table: {
width: 90
},
search: {
// labelMessage: '信息提示说明!!!',
componentProps: {
multiple: true,
enterSearch: true,
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择物料编码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '物料基础信息', // 查询弹窗标题
searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类
searchPage: itembasicApi.getItembasicPage, // 查询弹窗所需分页方法
searchCondition: [{
key: 'available',
value: 'TRUE',
isMainValue: false
}]
}
}
}, },
{
label: '版本号',
field: 'schdRlseId',
sort: 'custom',
table: {
width: 150
},
isSearch:true,
search: {
// labelMessage: '信息提示说明!!!',
componentProps: {
multiple: true,
enterSearch: true,
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择版本号', // 输入框占位文本
searchField: 'schdRlseId', // 查询弹窗赋值字段
searchTitle: '版本号', // 查询弹窗标题
searchAllSchemas: Version.allSchemas, // 查询弹窗所需类
searchPage: CustomerDeliveryForecastApi.queryVersion, // 查询弹窗所需分页方法
searchCondition: [{
key: 'schdParts',
value: 'schdPart',
message: '请填写物料代码!',
isMainValue: true,
isCSV:true,//是否用逗号分隔参数
},{
key: 'available',
value: 'TRUE',
isMainValue: false
}]
}
}
},
{ {
label: '净需求', label: '净需求',
field: 'schdNetReq', field: 'schdNetReq',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '需求日期', label: '需求日期',
field: 'schdDate', field: 'schdDate',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
formatter: dateFormatter, formatter: dateFormatter,
form: { form: {
component: 'DatePicker', component: 'DatePicker',
@ -61,13 +158,25 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
type: 'datetime', type: 'datetime',
valueFormat: 'x' valueFormat: 'x'
} }
} },
isSearch:true,
search: {
component: 'DatePicker',
value: [dayjs().format('YYYY-MM-DD'), dayjs().subtract(-3,'month').format('YYYY-MM-DD')],
componentProps: {
valueFormat: 'YYYY-MM-DD',
type: 'daterange',
defaultTime: [new Date('1 '), new Date('1 ')]
}
},
}, },
{ {
label: '需求时间', label: '需求时间',
field: 'schdTime', field: 'schdTime',
sort: 'custom', sort: 'custom',
formatter: dateFormatter, formatter: dateFormatter,
isTable:false,
isForm: false,
form: { form: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
@ -80,21 +189,38 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
label: '需求参考', label: '需求参考',
field: 'schdReference', field: 'schdReference',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '包装倍数', label: '包装倍数',
field: 'schdOrdMult', field: 'schdOrdMult',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '客户零件号', label: '客户零件号',
field: 'schdCustpart', field: 'schdCustpart',
sort: 'custom', sort: 'custom',
table: {
width: 110
},
},
{
label: '客户名称',
field: 'schdCustName',
sort: 'custom',
table: {
width: 90
},
}, },
{ {
label: '包装代码', label: '包装代码',
field: 'schdPkgCode', field: 'schdPkgCode',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '模型年', label: '模型年',
@ -105,21 +231,27 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
label: '客户参考', label: '客户参考',
field: 'schdCustref', field: 'schdCustref',
sort: 'custom', sort: 'custom',
table: {
width: 90
},
}, },
{ {
label: '先前累计需求数量', label: '先前累计需求数量',
field: 'schdPcrQty', field: 'schdPcrQty',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
}, },
{ {
label: '创建时间', label: '创建时间',
field: 'createTime', field: 'createTime',
sort: 'custom', sort: 'custom',
isTable:false,
isForm: false,
formatter: dateFormatter, formatter: dateFormatter,
table: { table: {
width: 180, width: 180,
}, },
isForm: false,
form: { form: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
@ -128,7 +260,6 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
valueFormat: 'x', valueFormat: 'x',
} }
}, },
isSearch: true,
search: { search: {
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
@ -141,7 +272,12 @@ export const CustomerDeliveryForecast = useCrudSchemas(reactive<CrudSchema[]>([
{ {
label: '是否可用', label: '是否可用',
field: 'available', field: 'available',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
sort: 'custom', sort: 'custom',
table: {
width: 150
},
}, },
// { // {
// label: '操作', // label: '操作',

148
src/views/wms/basicDataManage/customerManage/customerDeliveryForecast/index.vue

@ -1,7 +1,15 @@
<template> <template>
<ContentWrap> <ContentWrap>
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<Search :schema="CustomerDeliveryForecast.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> <Search ref="searchRef" :showSearchTableQueryFields="['schdPart','schdRlseId']" :hiddenFilterBtnFields="['schdPart','schdRlseId']" :schema="CustomerDeliveryForecast.allSchemas.searchSchema" @searchTableSuccess="searchQueryTableSuccess" @search="searchClick" @reset="searchClick" >
<template #actionMore>
<el-button type="primary" class="updateBtn" @click="toMonthSearchClick">
<Icon class="mr-5px" icon="ep:" />
月合计
<Icon class="ml-5px" icon="ep:" />
</el-button>
</template>
</Search>
</ContentWrap> </ContentWrap>
<!-- 列表头部 --> <!-- 列表头部 -->
@ -16,7 +24,27 @@
<!-- 列表 --> <!-- 列表 -->
<ContentWrap> <ContentWrap>
<Table <Table v-if="isToMonth"
:columns="tableColumns"
:data="tableObjectToMonth.tableList"
:loading="tableObjectToMonth.loading"
:pagination="{
total: tableObjectToMonth.total
}"
v-model:pageSize="tableObjectToMonth.pageSize"
v-model:currentPage="tableObjectToMonth.currentPage"
v-model:sort="tableObjectToMonth.sort"
>
<template #code="{row}">
<el-button type="primary" link @click="openDetail(row, '代码', row.code)">
<span>{{ row.code }}</span>
</el-button>
</template>
<template #action="{ row }">
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
</template>
</Table>
<Table v-else
:columns="tableColumns" :columns="tableColumns"
:data="tableObject.tableList" :data="tableObject.tableList"
:loading="tableObject.loading" :loading="tableObject.loading"
@ -36,6 +64,7 @@
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> <ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
</template> </template>
</Table> </Table>
</ContentWrap> </ContentWrap>
<!-- 表单弹窗添加/修改 --> <!-- 表单弹窗添加/修改 -->
@ -77,6 +106,7 @@ const { t } = useI18n() // 国际化
const route = useRoute() // const route = useRoute() //
const routeName = ref() const routeName = ref()
routeName.value = route.name routeName.value = route.name
const orginTableColumns = ref(CustomerDeliveryForecast.allSchemas.tableColumns)
const tableColumns = ref(CustomerDeliveryForecast.allSchemas.tableColumns) const tableColumns = ref(CustomerDeliveryForecast.allSchemas.tableColumns)
// //
@ -90,9 +120,108 @@ const searchTableSuccess = (formField, searchField, val, formRef) => {
// //
const updataTableColumns = (val) => { const updataTableColumns = (val) => {
tableColumns.value = val orginTableColumns.value = val
tableColumns.value = [...orginTableColumns.value,...dateTableColumns.value]
}
// --
const isToMonth = ref(false)
const toMonthSearchClick = async ()=>{
isToMonth.value = true
let data = await searchRef.value.getSearchFormData()
console.log('data',data)
await setSearchParamsHeadToMonth(data)
// updateDateTableColumns()
setSearchParamsToMonth(data)
}
const { tableObject:tableObjectHeadToMonth, tableMethods:tableMethodsHeadToMonth } = useTable({
getListApi: CustomerDeliveryForecastApi.getPageTableHeadToMonth //
})
//
const { getList:getListHeadToMonth, setSearchParams:setSearchParamsHeadToMonth } = tableMethodsHeadToMonth
watch(()=>tableObjectHeadToMonth.tableList,()=>{
updateDateTableColumns(true)
},{deep:true})
// -
const { tableObject:tableObjectToMonth, tableMethods:tableMethodsToMonth } = useTable({
getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPageToMonth //
})
//
const { getList:getListToMonth, setSearchParams:setSearchParamsToMonth } = tableMethodsToMonth
// --
const { tableObject:tableObjectHead, tableMethods:tableMethodsHead } = useTable({
getListApi: CustomerDeliveryForecastApi.getPageTableHead //
})
//
const { getList:getListHead, setSearchParams:setSearchParamsHead } = tableMethodsHead
watch(()=>tableObjectHead.tableList,()=>{
updateDateTableColumns(false)
},{deep:true})
const dateTableColumns = ref([])
const updateDateTableColumns = (toMonth)=>{
console.log('tableObjectHead',tableObjectHead)
let dateColumns = []
if(toMonth){
//
tableObjectHeadToMonth.tableList.forEach(item=>{
dateColumns.push({
width:120,
field: item,
label: item
})
})
}else{
tableObjectHead.tableList.forEach(item=>{
dateColumns.push({
width:120,
field: item,
label: item
})
})
}
dateTableColumns.value = dateColumns
tableColumns.value = [...orginTableColumns.value,...dateColumns]
console.log('tableColumns',tableColumns.value)
} }
//
const searchQueryTableSuccess = (formField, searchField, val, formRef, type, row ) => {
console.log('searchQueryTableSuccess',formField, searchField, val, formRef, type, row )
nextTick(() => {
const setV = {}
if(formField == 'schdPart'||formField == 'schdRlseId'){
//
let list = []
val.forEach(item=>{
list.push(item[searchField])
})
setV[formField] = list.join(' ')
formRef.setValues(setV)
}else{
setV[formField] = val[0][searchField]
formRef.setValues(setV)
}
})
}
const searchRef = ref()
const searchClick = async (data)=>{
isToMonth.value = false
await setSearchParamsHead(data)
// updateDateTableColumns()
setSearchParams(data)
}
const { tableObject, tableMethods } = useTable({ const { tableObject, tableMethods } = useTable({
getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPage // getListApi: CustomerDeliveryForecastApi.getCustomerDeliveryForecastPage //
}) })
@ -104,9 +233,9 @@ const { getList, setSearchParams } = tableMethods
const HeadButttondata = [ const HeadButttondata = [
defaultButtons.defaultAddBtn({hasPermi:'wms:customerDeliveryForecast:create'}), // defaultButtons.defaultAddBtn({hasPermi:'wms:customerDeliveryForecast:create'}), //
defaultButtons.defaultImportBtn({hasPermi:'wms:customerDeliveryForecast:import'}), // defaultButtons.defaultImportBtn({hasPermi:'wms:customerDeliveryForecast:import'}), //
defaultButtons.defaultExportBtn({hasPermi:'wms:customerDeliveryForecast:export'}), // defaultButtons.defaultExportBtn({hasPermi:'wms:customerDeliveryForecast:export-excel'}), //
defaultButtons.defaultFreshBtn(null), // defaultButtons.defaultFreshBtn(null), //
defaultButtons.defaultFilterBtn(null), // // defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), // defaultButtons.defaultSetBtn(null), //
// { // {
// label: '', // label: '',
@ -119,7 +248,7 @@ const HeadButttondata = [
] ]
// //
const buttonBaseClick = (val, item) => { const buttonBaseClick = async (val, item) => {
if (val == 'add') { // if (val == 'add') { //
openForm('create') openForm('create')
} else if (val == 'import') { // } else if (val == 'import') { //
@ -132,7 +261,11 @@ const buttonBaseClick = (val, item) => {
filters: tableObject.params.filters filters: tableObject.params.filters
}) })
} else { } else {
isToMonth.value = false
await getListHead()
// updateDateTableColumns()
getList() getList()
} }
} else if (val == 'filtrate') { // } else if (val == 'filtrate') { //
} else { // } else { //
@ -257,7 +390,8 @@ const searchFormClick = (searchData) => {
/** 初始化 **/ /** 初始化 **/
onMounted(async () => { onMounted(async () => {
getList() searchRef.value.search()
// getList()
importTemplateData.templateUrl = await CustomerDeliveryForecastApi.importTemplate() importTemplateData.templateUrl = await CustomerDeliveryForecastApi.importTemplate()
}) })

Loading…
Cancel
Save