Browse Source

预测周期修改

master_hella_20240701
zhaoxuebing 5 months ago
parent
commit
051f4829a4
  1. 65
      src/api/wms/supplierCycle/index.ts
  2. 244
      src/views/wms/basicDataManage/supplierManage/supplierCycle/index.vue
  3. 200
      src/views/wms/basicDataManage/supplierManage/supplierCycle/supplierCycle.data.ts
  4. 40
      src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts

65
src/api/wms/supplierCycle/index.ts

@ -0,0 +1,65 @@
import request from '@/config/axios'
export interface SupplierCycleVO {
id: number
supplierCode: string
monday: string
tuesday: string
wednesday: string
thursday: string
friday: string
saturday: string
sunday: string
version: string
remark: string
extraProperties: string
siteId: string
beginTime: Date
endTime: Date
available: string
status: string
concurrencyStamp: string
ruleUserId: number
departmentCode: string
}
// 查询要货预测周期列表
export const getSupplierCyclePage = async (params) => {
if (params.isSearch) {
delete params.isSearch
const data = {...params}
return await request.post({ url: '/basic/supplier-cycle/senior', data })
} else {
return await request.get({ url: `/basic/supplier-cycle/page`, params })
}
}
// 查询要货预测周期详情
export const getSupplierCycle = async (id: number) => {
return await request.get({ url: `/basic/supplier-cycle/get?id=` + id })
}
// 新增要货预测周期
export const createSupplierCycle = async (data: SupplierCycleVO) => {
return await request.post({ url: `/basic/supplier-cycle/create`, data })
}
// 修改要货预测周期
export const updateSupplierCycle = async (data: SupplierCycleVO) => {
return await request.put({ url: `/basic/supplier-cycle/update`, data })
}
// 删除要货预测周期
export const deleteSupplierCycle = async (id: number) => {
return await request.delete({ url: `/basic/supplier-cycle/delete?id=` + id })
}
// 导出要货预测周期 Excel
export const exportSupplierCycle = async (params) => {
return await request.download({ url: `/basic/supplier-cycle/export-excel`, params })
}
// 下载用户导入模板
export const importTemplate = () => {
return request.download({ url: '/basic/supplier-cycle/get-import-template' })
}

244
src/views/wms/basicDataManage/supplierManage/supplierCycle/index.vue

@ -0,0 +1,244 @@
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search :schema="SupplierCycle.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="SupplierCycle.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 #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>
</ContentWrap>
<!-- 表单弹窗添加/修改 -->
<BasicForm
ref="basicFormRef"
@success="formsSuccess"
:rules="SupplierCycleRules"
:formAllSchemas="SupplierCycle.allSchemas"
:apiUpdate="SupplierCycleApi.updateSupplierCycle"
:apiCreate="SupplierCycleApi.createSupplierCycle"
@searchTableSuccess="searchTableSuccess"
:isBusiness="false"
/>
<!-- 详情 -->
<Detail ref="detailRef" :isBasic="true" :allSchemas="SupplierCycle.allSchemas" />
<!-- 导入 -->
<ImportForm ref="importFormRef" url="/wms/supplier-cycle/import" :importTemplateData="importTemplateData" @success="importSuccess" />
</template>
<script setup lang="ts">
import download from '@/utils/download'
import { SupplierCycle,SupplierCycleRules } from './supplierCycle.data'
import * as SupplierCycleApi from '@/api/wms/supplierCycle'
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'
defineOptions({ name: 'SupplierCycle' })
const message = useMessage() //
const { t } = useI18n() //
const route = useRoute() //
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(SupplierCycle.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: SupplierCycleApi.getSupplierCyclePage //
})
//
const { getList, setSearchParams } = tableMethods
//
const HeadButttondata = [
defaultButtons.defaultAddBtn({hasPermi:'wms:supplierCycle:create'}), //
defaultButtons.defaultImportBtn({hasPermi:'wms:supplierCycle:import'}), //
defaultButtons.defaultExportBtn({hasPermi:'wms:supplierCycle: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.mainListEditBtn({hasPermi:'wms:supplierCycle:update'}), //
defaultButtons.mainListDeleteBtn({hasPermi:'wms:supplierCycle:delete'}), //
]
// -
const buttonTableClick = async (val, row) => {
if (val == 'edit') { //
openForm('update', row)
} else if (val == 'delete') { //
handleDelete(row.id)
}
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type: string, row?: any) => {
basicFormRef.value.open(type, row)
}
// form
const formsSuccess = async (formType,data) => {
var isHave =SupplierCycle.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 SupplierCycleApi.createSupplierCycle(data)
message.success(t('common.createSuccess'))
} else {
await SupplierCycleApi.updateSupplierCycle(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
}
/** 详情操作 */
const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
detailRef.value.openDetail(row, titleName, titleValue, 'basicSupplierCycle')
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
//
await message.delConfirm()
//
await SupplierCycleApi.deleteSupplierCycle(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 SupplierCycleApi.exportSupplierCycle(tableObject.params)
download.excel(data, '要货预测周期.xlsx')
} catch {
} finally {
exportLoading.value = false
}
}
/** 导入 */
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() //
}
/** 初始化 **/
onMounted(async () => {
getList()
importTemplateData.templateUrl = await SupplierCycleApi.importTemplate()
})
</script>

200
src/views/wms/basicDataManage/supplierManage/supplierCycle/supplierCycle.data.ts

@ -0,0 +1,200 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
// 表单校验
export const SupplierCycleRules = reactive({
available: [required],
departmentCode: [required],
})
export const SupplierCycle = useCrudSchemas(reactive<CrudSchema[]>([
{
label: 'id',
field: 'id',
sort: 'custom',
isForm: false,
isTable:false,
},
{
label: '供应商代码',
field: 'supplierCode',
sort: 'custom',
isSearch: true,
},
{
label: '星期一',
field: 'monday',
sort: 'custom',
},
{
label: '星期二',
field: 'tuesday',
sort: 'custom',
},
{
label: '星期三',
field: 'wednesday',
sort: 'custom',
},
{
label: '星期四',
field: 'thursday',
sort: 'custom',
},
{
label: '星期五',
field: 'friday',
sort: 'custom',
},
{
label: '星期六',
field: 'saturday',
sort: 'custom',
},
{
label: '星期日',
field: 'sunday',
sort: 'custom',
},
{
label: '版本号',
field: 'version',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '备注',
field: 'remark',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '创建时间',
field: 'createTime',
sort: 'custom',
isTable:false,
isForm:false,
formatter: dateFormatter,
search: {
component: 'DatePicker',
componentProps: {
valueFormat: 'YYYY-MM-DD HH:mm:ss',
type: 'daterange',
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
}
},
},
{
label: '扩展属性',
field: 'extraProperties',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '地点ID',
field: 'siteId',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '开始时间',
field: 'beginTime',
sort: 'custom',
isTable:false,
isForm:false,
formatter: dateFormatter,
search: {
component: 'DatePicker',
componentProps: {
valueFormat: 'YYYY-MM-DD HH:mm:ss',
type: 'daterange',
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
}
},
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
valueFormat: 'x'
}
},
},
{
label: '结束时间',
field: 'endTime',
sort: 'custom',
isTable:false,
isForm:false,
formatter: dateFormatter,
search: {
component: 'DatePicker',
componentProps: {
valueFormat: 'YYYY-MM-DD HH:mm:ss',
type: 'daterange',
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
}
},
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
valueFormat: 'x'
}
},
},
{
label: '是否可用',
field: 'available',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '状态',
field: 'status',
sort: 'custom',
isTable:false,
isForm:false,
form: {
component: 'Radio'
},
},
{
label: '并发乐观锁',
field: 'concurrencyStamp',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '权限所属人员id',
field: 'ruleUserId',
sort: 'custom',
isTable:false,
isForm:false,
form: {
component: 'InputNumber',
value: 0
},
},
{
label: '部门',
field: 'departmentCode',
sort: 'custom',
isTable:false,
isForm:false,
},
{
label: '操作',
field: 'action',
isForm: false,
table: {
width: 150,
fixed: 'right'
}
}
]))

40
src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/demandforecastingMain.data.ts

@ -222,6 +222,46 @@ export const DemandforecastingMain = useCrudSchemas(reactive<CrudSchema[]>([
} }
}, },
}, },
{
label: '计划员',
field: 'planerId',
sort: 'custom',
table: {
width: 150
},
isTable:false,
isForm: false,
},
{
label: '计划员名称',
field: 'planerUserName',
sort: 'custom',
table: {
width: 150
},
isTable:false,
isForm: false,
},
{
label: '版本',
field: 'activeVersion',
sort: 'custom',
table: {
width: 150
},
isTable:false,
isForm: false,
},
{
label: '到货日期',
field: 'dueDate',
sort: 'custom',
table: {
width: 150
},
isTable:false,
isForm: false,
},
{ {
label: '操作', label: '操作',
field: 'action', field: 'action',

Loading…
Cancel
Save