Browse Source

补料便次导出修改

intex_online20250327
叶佳兴 3 weeks ago
parent
commit
5c2457527a
  1. 4
      src/views/wms/basicDataManage/repleinshDeliCount/index.vue
  2. 57
      src/views/wms/basicDataManage/repleinshDeliCount/repleinshDeliCount.data.ts
  3. 54
      src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts

4
src/views/wms/basicDataManage/repleinshDeliCount/index.vue

@ -99,9 +99,7 @@ const { getList, setSearchParams } = tableMethods
//
const HeadButttondata = [
defaultButtons.defaultAddBtn({hasPermi:'wms:repleinshDeliCount:create'}), //
defaultButtons.defaultImportBtn({hasPermi:'wms:repleinshDeliCount:import'}), //
defaultButtons.defaultExportBtn({hasPermi:'wms:repleinshDeliCount:export'}), //
defaultButtons.defaultExportBtn(null), //
defaultButtons.defaultFreshBtn(null), //
defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), //

57
src/views/wms/basicDataManage/repleinshDeliCount/repleinshDeliCount.data.ts

@ -1,5 +1,5 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
import { dateFormatter, dateFormatter2 } from '@/utils/formatTime'
// 表单校验
export const RepleinshDeliCountRules = reactive({
@ -29,30 +29,16 @@ export const RepleinshDeliCount = useCrudSchemas(reactive<CrudSchema[]>([
label: '计时器时间',
field: 'timer',
sort: 'custom',
isSearch: false,
},
{
label: '计算便次日期',
field: 'currentDeliDate',
sort: 'custom',
formatter: dateFormatter,
isSearch: false,
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'
}
},
isForm: false,
},
{
label: '计算便次日期',
field: 'currentDeliDate',
sort: 'custom',
formatter: dateFormatter2,
isForm: false,
},
{
label: '计算便次',
field: 'currentDeli',
@ -73,23 +59,8 @@ export const RepleinshDeliCount = useCrudSchemas(reactive<CrudSchema[]>([
label: '延迟便次日期',
field: 'delayDeliDate',
sort: 'custom',
formatter: dateFormatter,
isSearch: false,
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'
}
},
formatter: dateFormatter2,
isForm: false,
},
{
label: '延迟便次',
@ -101,12 +72,6 @@ export const RepleinshDeliCount = useCrudSchemas(reactive<CrudSchema[]>([
value: 0
},
},
{
label: '下一便次开始时间',
field: 'nextDeliTimer',
sort: 'custom',
isSearch: false,
},
{
label: '创建时间',
field: 'createTime',

54
src/views/wms/issueManage/repleinsh/repleinshRequestMain/repleinshRequestMain.data.ts

@ -1,5 +1,5 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
import { dateFormatter, dateFormatter2 } from '@/utils/formatTime'
import * as getRequestsettingApi from '@/api/wms/requestsetting/index'
import * as ItembasicApi from '@/api/wms/itembasic'
@ -80,7 +80,57 @@ export const RepleinshRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
isTable: true,
isDetail: true
},
{
label: '日期',
sortTableDefault:5,
field: 'day',
sort: 'custom',
isDetail: true,
isTable: true,
isForm: true,
isTableForm: false,
isSearch: true,
sortSearchDefault: 3,
formatter: dateFormatter2,
search: {
component: 'DatePicker',
componentProps: {
valueFormat: 'YYYY-MM-DD HH:mm:ss',
type: 'daterange',
defaultTime: [new Date('1 '), new Date('1 ')]
}
},
form: {
component: 'DatePicker',
componentProps: {
format: 'YYYY-MM-DD',
valueFormat: 'x',
defaultTime: [new Date('1 '), new Date('1 ')]
}
},
table: {
width: 150
},
detail: {
dateFormat:'YYYY-MM-DD'
}
},
{
label: '便次',
field: 'deliNo',
sort: 'custom',
sortTableDefault: 5,
table: {
width: 150
},
isTable:true,
form: {
component: 'InputNumber',
componentProps: {
min: 1,
},
}
},
{
label: '从库区类型范围',
field: 'fromAreaTypes',

Loading…
Cancel
Save