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.

629 lines
14 KiB

1 year ago
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime'
import * as SupplierApi from '@/api/wms/supplier'
import * as SupplieritemApi from '@/api/wms/supplieritem'
import { Supplier} from '@/views/wms/basicDataManage/supplierManage/supplier/supplier.data'
1 year ago
import { Supplieritem } from '@/views/wms/basicDataManage/supplierManage/supplieritem/supplieritem.data'
9 months ago
import * as ItembasicApi from '@/api/wms/itembasic'
import {Itembasic} from "@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data";
1 year ago
import * as PurchaseMainApi from '@/api/wms/purchaseMain'
import * as PurchaseDetailApi from '@/api/wms/purchaseDetail'
import { PurchaseDetail, PurchaseMain } from '../purchaseMain/purchaseMain.data'
9 months ago
import * as DemandforecastingMainApi from '@/api/wms/demandforecastingMain'
import * as DemandforecastingDetailApi from '@/api/wms/demandforecastingDetail'
9 months ago
import dayjs from 'dayjs'
9 months ago
1 year ago
const { t } = useI18n() // 国际化
9 months ago
let planerList = []
try {
planerList = await DemandforecastingMainApi.queryUserPlanerList()
if(planerList.length>0){
planerList.unshift({
planerId:'ALL',
planerNickname:t('ts.全选'),
planerUsername:t('ts.全选'),
})
}
console.log('planerList',planerList)
} catch (error) {
}
1 year ago
/**
* @returns {Array}
*/
Supplieritem.allSchemas.searchSchema = Supplieritem.allSchemas.searchSchema.filter(item=>item.field!="allowOverShipment")
export const Supplier1 = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '用户名称',
field: 'userName',
sort: 'custom',
isSearch:true,
9 months ago
},
{
label: '用户昵称',
field: 'nickName',
sort: 'custom',
9 months ago
},
{
label: '供应商代码',
field: 'supplierCode',
isSearch:true,
sort: 'custom',
9 months ago
},
{
label: '供应商名称',
field: 'supplierName',
sort: 'custom',
9 months ago
},
{
label: '创建时间',
field: 'createTime',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
9 months ago
}
]))
export const Version = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '供应商代码',
7 months ago
field: 'supplierCodes',
sort: 'custom',
isSearch:true,
},
{
label: '订单号',
field: 'poNumber',
sort: 'custom',
isSearch:true,
},
{
label: '订单行',
field: 'poLine',
sort: 'custom',
},
{
label: '品番',
field: 'itemCode',
isSearch:true,
sort: 'custom',
},
{
label: '子表版本',
field: 'detailVersion',
sort: 'custom',
}
]))
1 year ago
export const DemandforecastingMain = useCrudSchemas(reactive<CrudSchema[]>([
{
9 months ago
label: '计划员',
field: 'planerId',
1 year ago
sort: 'custom',
9 months ago
isTable:false,
1 year ago
isForm: false,
9 months ago
isSearch:true,
search:{
component:'Select',
value:planerList.length>1?[planerList[1]['planerId']]:[],
9 months ago
componentProps: {
showAll:true,// 备用做全选
multiple:true,
emptyValues:[null, undefined],
valueOnClear:null,
9 months ago
options:planerList.length>0?planerList.map(item=>({
9 months ago
label:item.planerUsername,
value:item.planerId
9 months ago
})):[]
9 months ago
}
},
1 year ago
},
{
label: '供应商代码',
field: 'supplierCode',
sort: 'custom',
table: {
9 months ago
width: 150,
1 year ago
},
isSearch: true,
9 months ago
search: {
1 year ago
componentProps: {
dialogWidth:'700px',//搜索出来弹窗的宽度
9 months ago
multiple: true,
enterSearch:true,
1 year ago
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择供应商代码', // 输入框占位文本
searchField: 'supplierCode', // 查询弹窗赋值字段
1 year ago
searchTitle: '供应商信息', // 查询弹窗标题
searchAllSchemas: Supplier1.allSchemas, // 查询弹窗所需类
searchPage: DemandforecastingMainApi.querySupplierList, // 查询弹窗所需分页方法
1 year ago
searchCondition: [{
key: 'planers',
value: 'planerId',
message: '请选择计划员!',
isMainValue: true,
isCSV:true,//是否用逗号分隔参数
},{
1 year ago
key: 'available',
value: 'TRUE',
isMainValue: false
}]
}
}
},
{
label: '状态',
field: 'status',
sort: 'custom',
dictType: DICT_TYPE.DEMANDFORECASTING_STATUS,
dictClass: 'string',
table: {
width: 150
},
},
1 year ago
{
9 months ago
label: '订单号',
field: 'poNumber',
1 year ago
sort: 'custom',
table: {
width: 150
},
},
{
9 months ago
label: '订单行',
field: 'poLine',
1 year ago
sort: 'custom',
table: {
width: 150
}
},
{
label: '品番',
9 months ago
field: 'itemCode',
1 year ago
sort: 'custom',
9 months ago
isSearch:true,
isTable:true,
isForm: false,
search: {
// labelMessage: '信息提示说明!!!',
1 year ago
componentProps: {
9 months ago
multiple: true,
enterSearch: true,
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择品番', // 输入框占位文本
searchField: 'itemCode', // 查询弹窗赋值字段
9 months ago
searchTitle: '物料基础信息', // 查询弹窗标题
searchAllSchemas: Supplieritem.allSchemas, // 查询弹窗所需类
searchPage: SupplieritemApi.getSupplieritemPageSCP, // 查询弹窗所需分页方法
9 months ago
searchCondition: [{
key: 'supplierCodes',
9 months ago
value: 'supplierCode',
message: '请填写供应商代码!',
isMainValue: true,
isCSV:true,//是否用逗号分隔参数
9 months ago
},{
key: 'available',
value: 'TRUE',
isMainValue: false
}]
1 year ago
}
}
},
{
label: '背番',
field: 'backNumber',
sort: 'custom',
isSearch: true,
hiddenSearchHigh:true,
table: {
width: 150
},
},
1 year ago
{
9 months ago
label: '版本号',
field: 'version',
1 year ago
sort: 'custom',
9 months ago
isSearch:true,
search: {
// labelMessage: '信息提示说明!!!',
1 year ago
componentProps: {
9 months ago
multiple: true,
enterSearch: true,
isSearchList: true, // 开启查询弹窗
9 months ago
searchListPlaceholder: '请选择版本号', // 输入框占位文本
searchField: 'detailVersion', // 查询弹窗赋值字段
searchTitle: '版本号', // 查询弹窗标题
searchAllSchemas: Version.allSchemas, // 查询弹窗所需类
searchPage: DemandforecastingDetailApi.queryVersion, // 查询弹窗所需分页方法
9 months ago
searchCondition: [{
key: 'supplierCodes',
9 months ago
value: 'supplierCode',
message: '请填写供应商代码!',
isMainValue: true,
isCSV:true,//是否用逗号分隔参数
},{
key: 'itemCodes',
value: 'itemCode',
message: '请填写品番!',
isMainValue: true,
isCSV:true,//是否用逗号分隔参数
9 months ago
},{
key: 'available',
value: 'TRUE',
isMainValue: false
}]
1 year ago
}
9 months ago
}
},
{
label: 'N',
field: 'N',
sort: 'custom',
},
{
label: 'N+1',
field: 'N+1',
sort: 'custom',
},
{
label: 'N+2',
field: 'N+2',
sort: 'custom',
},
{
label: '到货日期',
field: 'dueDate',
9 months ago
formatter: dateFormatter,
sort: 'custom',
table: {
width: 150
},
9 months ago
isSearch:true,
isTable:false,
isForm: false,
9 months ago
search: {
component: 'DatePicker',
value: [dayjs(), dayjs().subtract(-3,'month')],
9 months ago
componentProps: {
valueFormat: 'YYYY-MM-DD',
type: 'daterange',
defaultTime: [new Date('1 '), new Date('1 ')]
}
1 year ago
},
},
{
label: '操作',
field: 'action',
table: {
width: 150,
fixed: 'right'
}
1 year ago
}
]))
//表单校验
export const DemandforecastingMainRules = reactive({
available: [
{ required: true, message: '请选择是否可用', trigger: 'change' }
],
10 months ago
supplierCode: [
{ required: true, message: '请选择供应商代码', trigger: 'change' }
1 year ago
],
version: [
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
remark: [
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
})
/**
* @returns {Array}
*/
export const DemandforecastingDetail = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '单据号',
field: 'number',
sort: 'custom',
table: {
width: 180
},
isTableForm: false,
10 months ago
hiddenInMain:true,
1 year ago
form: {
componentProps: {
disbaled: true
}
}
},
{
label: '预测时间类型',
field: 'predictTimeType',
dictType: DICT_TYPE.PREDICT_TIME_TYPE,
sort: 'custom',
dictClass: 'string',
9 months ago
isTable: false,
1 year ago
table: {
width: 150
},
tableForm: {
type: 'Select'
}
},
{
label: '预测日期',
field: 'predictTime',
formatter: dateFormatter2,
detail: {
dateFormat: 'YYYY-MM-DD'
},
sort: 'custom',
table: {
width: 180
},
9 months ago
isTable:false,
1 year ago
form: {
component: 'DatePicker',
componentProps: {
style: {width: '100%'},
type: 'date',
dateFormat: 'YYYY-MM-DD',
valueFormat: 'x',
}
},
tableForm: {
type: 'FormDate',
dateFormat: 'YYYY-MM-DD',
valueFormat: 'x',
}
},
9 months ago
1 year ago
{
label: '计量单位',
field: 'uom',
sort: 'custom',
dictType: DICT_TYPE.UOM,
dictClass: 'string',
isTable: true,
table: {
width: 150
},
tableForm: {
type: 'Select',
disabled: true
1 year ago
}
},
10 months ago
{
label: '计划数量',
field: 'planQty',
sort: 'custom',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 1,
precision: 6
}
},
tableForm: {
type: 'InputNumber',
min: 1,
precision: 6
}
},
1 year ago
{
label: '备注',
field: 'remark',
sort: 'custom',
table: {
width: 150
},
},
{
label: '创建时间',
field: 'createTime',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
form: {
component: 'DatePicker',
componentProps: {
style: { width: '100%' },
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
isTableForm: false,
isForm: false,
},
{
label: '创建者',
field: 'creator',
sort: 'custom',
table: {
width: 150
},
isTableForm: false,
isForm: false,
},
{
label: '最后更新时间',
field: 'updateTime',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
form: {
component: 'DatePicker',
componentProps: {
style: { width: '100%' },
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
isTableForm: false,
isForm: false,
},
{
label: '最后更新者',
field: 'updater',
sort: 'custom',
table: {
width: 150
},
isTableForm: false,
isForm: false,
},
{
label: '操作',
hiddenInMain:true,
1 year ago
field: 'action',
isDetail: false,
isForm: false,
table: {
width: 150,
fixed: 'right'
},
isTableForm: false,
}
]))
//表单校验
export const DemandforecastingDetailRules = reactive({
predictTimeType: [
{ required: true, message: '请选择预测时间类型', trigger: 'change' },
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
predictTime: [
{ required: true, message: '请输入预测时间', trigger: 'change' }
],
planQty: [
{ required: true, message: '请输入计划数量', trigger: 'blur' }
],
uom: [
{ required: true, message: '请选择计量单位', trigger: 'change' }
],
number: [
{ required: true, message: '请输入单据号', trigger: 'blur' }
],
itemCode: [
{ required: true, message: '请选择品番', trigger: 'change' }
1 year ago
],
remark: [
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
11 months ago
poLine: [{required:true, message: '请选择订单行', trigger: 'blur'}]
1 year ago
})
export const DemandforecastingMainPlan = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '版本号',
field: 'detailVersion',
sort: 'custom',
table: {
width: 150
},
},
{
label: '供应商代码',
field: 'detailSupplierCode',
sort: 'custom',
table: {
width: 150,
},
},
{
label: '订单号',
field: 'poNumber',
sort: 'custom',
table: {
width: 150
},
},
{
label: '订单行',
field: 'poLine',
sort: 'custom',
table: {
width: 150
}
},
{
label: '品番',
field: 'itemCode',
sort: 'custom',
table: {
width: 150
},
},
{
label: '背番',
field: 'backNumber',
sort: 'custom',
isSearch: false,
table: {
width: 150
},
},
{
label: '计划日期',
field: 'dueDate',
formatter: dateFormatter2,
sort: 'custom',
table: {
width: 150
},
},
{
label: '取货日期',
field: 'schdShipDate',
formatter: dateFormatter2,
sort: 'custom',
table: {
width: 150
},
},
{
label: '数量',
field: 'planQty',
sort: 'custom',
},
{
label: '计量单位',
field: 'uom',
sort: 'custom',
dictType: DICT_TYPE.UOM,
dictClass: 'string',
isTable: true,
table: {
width: 150
},
}
]))