zhaoxuebing
4 months ago
5 changed files with 3794 additions and 0 deletions
@ -0,0 +1,198 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="[...PurchasereturnRecordMain.allSchemas.searchSchema,...PurchasereturnRecordDetail.allSchemas.searchSchema]" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="PurchasereturnRecordMain.allSchemas" |
||||
|
:detailAllSchemas="PurchasereturnRecordDetail.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table v-clientTable |
||||
|
: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 #number="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
||||
|
<span>{{ row.number }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row,$index }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row,$index)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="formRef" |
||||
|
@success="getList" |
||||
|
:rules="PurchasereturnRecordMainRules" |
||||
|
:formAllSchemas="PurchasereturnRecordMain.allSchemas" |
||||
|
:tableAllSchemas="PurchasereturnRecordDetail.allSchemas" |
||||
|
:tableFormRules="PurchasereturnRecordDetailRules" |
||||
|
:isBusiness="true" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail |
||||
|
ref="detailRef" |
||||
|
:isBasic="false" |
||||
|
:allSchemas="PurchasereturnRecordMain.allSchemas" |
||||
|
:detailAllSchemas="PurchasereturnRecordDetail.allSchemas" |
||||
|
:detailAllSchemasRules="PurchasereturnRecordDetailRules" |
||||
|
:apiPage="routeName.includes('SCP')?PurchasereturnRecordDetailApi.getPurchasereturnRecordDetailPageSCP:PurchasereturnRecordDetailApi.getPurchasereturnRecordDetailPage" |
||||
|
/> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { PurchasereturnRecordMain,PurchasereturnRecordMainRules,PurchasereturnRecordDetail,PurchasereturnRecordDetailRules } from './purchasereturnRecordSpareMain.data' |
||||
|
import * as PurchasereturnRecordMainApi from '@/api/wms/purchasereturnRecordMain' |
||||
|
import * as PurchasereturnRecordDetailApi from '@/api/wms/purchasereturnRecordDetail' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
import { getAccessToken } from '@/utils/auth' |
||||
|
import { CACHE_KEY, useCache } from '@/hooks/web/useCache' |
||||
|
import { getJmreportBaseUrl } from '@/utils/systemParam' |
||||
|
// 采购退货记录主 |
||||
|
defineOptions({ name: 'PurchasereturnRecordSpareMain' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref([...PurchasereturnRecordMain.allSchemas.tableColumns,...PurchasereturnRecordDetail.allSchemas.tableMainColumns]) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: routeName.value.includes('SCP')?PurchasereturnRecordDetailApi.getPurchasereturnRecordDetailPageSCP:PurchasereturnRecordDetailApi.getPurchasereturnRecordDetailPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:purchasereturn-record-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 == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
if (tableObject.params.filters && tableObject.params.filters.length > 0 ) { |
||||
|
searchFormClick({ |
||||
|
filters: tableObject.params.filters |
||||
|
}) |
||||
|
} else { |
||||
|
getList() |
||||
|
} |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = (row,$index) => { |
||||
|
const findIndex = row['masterId']?tableObject.tableList.findIndex(item=>item['masterId'] == row['masterId']):-1 |
||||
|
if(findIndex>-1&&findIndex<$index){ |
||||
|
return [] |
||||
|
} |
||||
|
return [defaultButtons.mainListDocumentPrintBtn(null)] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'documentPrint') { |
||||
|
// 单据打印 |
||||
|
handleDocumentPrint(row.masterId) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 单据打印 |
||||
|
const BASE_URL = getJmreportBaseUrl() |
||||
|
const documentSrc = ref(BASE_URL + '/jmreport/view/920874172025987072?token=' + getAccessToken()) |
||||
|
const handleDocumentPrint = async (id) => { |
||||
|
window.open(documentSrc.value + '&id=' + id) |
||||
|
} |
||||
|
// 获取部门 用于详情 部门回显 |
||||
|
const { wsCache } = useCache() |
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name |
||||
|
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode)) |
||||
|
detailRef.value.openDetail(row, titleName, titleValue,'recordPurchasereturnMain') |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
if(routeName.value.includes('SCP')){ |
||||
|
const data = await PurchasereturnRecordMainApi.exportPurchasereturnRecordMainSCP(tableObject.params) |
||||
|
download.excel(data, `${t('ts.采购退货记录主')}.xlsx`) |
||||
|
}else{ |
||||
|
const data = await PurchasereturnRecordMainApi.exportPurchasereturnRecordMain(tableObject.params) |
||||
|
download.excel(data, `${t('ts.采购退货记录主')}.xlsx`) |
||||
|
} |
||||
|
|
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
}) |
||||
|
</script> |
@ -0,0 +1,906 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter,dateFormatter2 } from '@/utils/formatTime' |
||||
|
|
||||
|
/** |
||||
|
* @returns {Array} 采购退货记录主表 |
||||
|
*/ |
||||
|
export const PurchasereturnRecordMain = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180, |
||||
|
fixed: 'left' |
||||
|
}, |
||||
|
sortTableDefault: 1012, |
||||
|
sortSearchDefault:1, |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '申请单号', |
||||
|
field: 'requestNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '任务单号', |
||||
|
field: 'jobNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '采购收货记录单号', |
||||
|
field: 'purchaseReceiptRecordNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
sortTableDefault: 3, |
||||
|
sortSearchDefault: 5, |
||||
|
}, { |
||||
|
label: 'qad采购退货记录单号', |
||||
|
field: 'qadPurchaseReturnRecordCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
sortSearchDefault:3, |
||||
|
sortTableDefault: 4, |
||||
|
isTable: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '发货单号', |
||||
|
field: 'asnNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
sortSearchDefault:3, |
||||
|
isSearch: true, |
||||
|
sortTableDefault: 2 |
||||
|
}, |
||||
|
{ |
||||
|
label: '要货计划单号', |
||||
|
field: 'ppNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '供应商代码', |
||||
|
field: 'supplierCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1, |
||||
|
sortSearchDefault:2, |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '从月台代码', |
||||
|
field: 'fromDockCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '承运商', |
||||
|
field: 'carrierCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '运输方式', |
||||
|
field: 'transferMode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '车牌号', |
||||
|
field: 'vehiclePlateNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从仓库代码', |
||||
|
field: 'fromWarehouseCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '到仓库代码', |
||||
|
field: 'toWarehouseCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '出库事务类型', |
||||
|
field: 'outTransactionType', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '入库事务类型', |
||||
|
field: 'inTransactionType', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '从库区类型范围', |
||||
|
field: 'fromAreaTypes', |
||||
|
dictType: DICT_TYPE.AREA_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到库区类型范围', |
||||
|
field: 'toAreaTypes', |
||||
|
dictType: DICT_TYPE.AREA_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '从库区代码范围', |
||||
|
field: 'fromAreaCodes', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到库区代码范围', |
||||
|
field: 'toAreaCodes', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '执行时间', |
||||
|
field: 'executeTime', |
||||
|
formatter: dateFormatter, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '生效日期', |
||||
|
field: 'activeDate', |
||||
|
formatter: dateFormatter2, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
style: {width: '100%'}, |
||||
|
type: 'date', |
||||
|
dateFormat: 'YYYY-MM-DD', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '申请时间', |
||||
|
field: 'requestTime', |
||||
|
formatter: dateFormatter, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '截止时间', |
||||
|
field: 'dueTime', |
||||
|
formatter: dateFormatter, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '部门', |
||||
|
field: 'departmentCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '代码',
|
||||
|
// field: 'code',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '接口类型', |
||||
|
field: 'interfaceType', |
||||
|
dictType: DICT_TYPE.INTERFACE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '业务类型', |
||||
|
field: 'businessType', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
dictType: DICT_TYPE.TRUE_FALSE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '原因',
|
||||
|
// field: 'available',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// isTable: true,
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
formatter: dateFormatter, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
isTable: true, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建者', |
||||
|
field: 'creator', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isDetail: false, |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
}, |
||||
|
} |
||||
|
])) |
||||
|
|
||||
|
//表单校验
|
||||
|
export const PurchasereturnRecordMainRules = reactive({ |
||||
|
requestNumber: [ |
||||
|
{ required: true, message: '请选择申请单号', trigger: 'change' } |
||||
|
], |
||||
|
supplierCode: [ |
||||
|
{ required: true, message: '请选择供应商代码', trigger: 'change' } |
||||
|
], |
||||
|
fromWarehouseCode: [ |
||||
|
{ required: true, message: '请选择从仓库代码', trigger: 'change' } |
||||
|
], |
||||
|
fromAreaTypes: [ |
||||
|
{ required: true, message: '请选择从库区类型范围', trigger: 'change' } |
||||
|
], |
||||
|
outTransaction: [ |
||||
|
{ required: true, message: '请输入出库事务类型', trigger: 'blur' } |
||||
|
], |
||||
|
inTransaction: [ |
||||
|
{ required: true, message: '请输入入库事务类型', trigger: 'blur' } |
||||
|
], |
||||
|
executeTime: [ |
||||
|
{ required: true, message: '请输入执行时间', trigger: 'change' } |
||||
|
], |
||||
|
activeDate: [ |
||||
|
{ required: true, message: '请输入生效日期', trigger: 'change' } |
||||
|
], |
||||
|
available: [ |
||||
|
{ required: true, message: '请输入是否可用', trigger: 'blur' } |
||||
|
], |
||||
|
departmentCode: [ |
||||
|
{ required: true, message: '请输入部门', trigger: 'blur' } |
||||
|
], |
||||
|
interfaceType: [ |
||||
|
{ required: true, message: '请选择接口类型', trigger: 'change' } |
||||
|
], |
||||
|
number: [ |
||||
|
{ required: true, message: '请输入单据号', trigger: 'blur' } |
||||
|
], |
||||
|
businessType: [ |
||||
|
{ required: true, message: '请输入业务类型', trigger: 'blur' } |
||||
|
], |
||||
|
createTime: [ |
||||
|
{ required: true, message: '请选择创建时间', trigger: 'change' } |
||||
|
], |
||||
|
creator: [ |
||||
|
{ required: true, message: '请输入创建者', trigger: 'blur' } |
||||
|
], |
||||
|
}) |
||||
|
|
||||
|
/** |
||||
|
* @returns {Array} 采购退货记录子表 |
||||
|
*/ |
||||
|
export const PurchasereturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
|
||||
|
{ |
||||
|
label: '从包装号', |
||||
|
field: 'fromPackingNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
sortTableDefault: 1001, |
||||
|
sortSearchDefault: 1001, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到包装号', |
||||
|
field: 'toPackingNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
hiddenInMain: true, |
||||
|
sortSearchDefault: 1002, |
||||
|
sortTableDefault: 1001, |
||||
|
}, |
||||
|
{ |
||||
|
label: '包装规格', |
||||
|
field: 'packUnit', |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1004, |
||||
|
}, |
||||
|
{ |
||||
|
label: '包装数量', |
||||
|
field: 'packQty', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1004, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '退货数量', |
||||
|
field: 'qty', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
componentProps: { |
||||
|
min: 0, |
||||
|
precision: 6, |
||||
|
disabled:false |
||||
|
} |
||||
|
}, |
||||
|
sortTableDefault: 1004, |
||||
|
hiddenInMain:true, |
||||
|
isForm:false, |
||||
|
tableForm:{ |
||||
|
type:'InputNumber', |
||||
|
min:0, |
||||
|
precision: 6, |
||||
|
disabled:false |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '从器具号', |
||||
|
field: 'fromContainerNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '到器具号', |
||||
|
field: 'toContainerNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '从批次', |
||||
|
field: 'fromBatch', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
sortTableDefault: 1000, |
||||
|
}, |
||||
|
{ |
||||
|
label: '到批次', |
||||
|
field: 'toBatch', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
sortTableDefault: 1000, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '替代批次', |
||||
|
field: 'altBatch', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isTable:false, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '从库位代码', |
||||
|
field: 'fromLocationCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1009, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '到库位代码',
|
||||
|
// field: 'toLocationCode',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// sortTableDefault: 1009,
|
||||
|
// hiddenInMain: true
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '从库位组代码', |
||||
|
field: 'fromLocationGroupCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1010, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '到库位组代码',
|
||||
|
// field: 'toLocationGroupCode',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// sortTableDefault: 1010,
|
||||
|
// hiddenInMain: true
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '从库区代码', |
||||
|
field: 'fromAreaCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1010, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '到库区代码',
|
||||
|
// field: 'toAreaCode',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// sortTableDefault: 1010,
|
||||
|
// hiddenInMain: true
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '从货主代码', |
||||
|
field: 'fromOwnerCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1010, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '到货主代码', |
||||
|
field: 'toOwnerCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1010, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '库存状态', |
||||
|
field: 'inventoryStatus', |
||||
|
dictType: DICT_TYPE.INVENTORY_STATUS, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1008, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '订单号', |
||||
|
field: 'poNumber', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 4, |
||||
|
}, |
||||
|
{ |
||||
|
label: '订单行', |
||||
|
field: 'poLine', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 5, |
||||
|
}, |
||||
|
{ |
||||
|
label: '单据号', |
||||
|
field: 'number', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180, |
||||
|
}, |
||||
|
sortTableDefault: 1013, |
||||
|
hiddenInMain: true, |
||||
|
isSearch: false |
||||
|
}, |
||||
|
{ |
||||
|
label: '原因', |
||||
|
field: 'reason', |
||||
|
dictType: DICT_TYPE.PURCHASE_RETURN_REASON, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1013, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
|
||||
|
{ |
||||
|
label: '物料代码', |
||||
|
field: 'itemCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
isSearch: true, |
||||
|
sortSearchDefault: 6, |
||||
|
}, |
||||
|
{ |
||||
|
label: '物料名称', |
||||
|
field: 'itemName', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortSearchDefault: 6, |
||||
|
}, |
||||
|
{ |
||||
|
label: '物料描述1', |
||||
|
field: 'itemDesc1', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortSearchDefault: 7, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '物料描述2', |
||||
|
field: 'itemDesc2', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortSearchDefault: 7, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '数量',
|
||||
|
// field: 'qty',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// isTable:true,
|
||||
|
// sortTableDefault: 1005,
|
||||
|
// form: {
|
||||
|
// component: 'InputNumber',
|
||||
|
// }
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', |
||||
|
isTable: true, |
||||
|
sortTableDefault: 1006, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '单价', |
||||
|
field: 'singlePrice', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
hiddenInMain:true, |
||||
|
sortTableDefault: 1006, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '金额', |
||||
|
field: 'amount', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
hiddenInMain:true, |
||||
|
sortTableDefault: 1006, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '项目代码', |
||||
|
field: 'projectCode', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1011, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '代码',
|
||||
|
// field: 'code',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '接口类型', |
||||
|
field: 'interfaceType', |
||||
|
dictType: DICT_TYPE.INTERFACE_TYPE, |
||||
|
dictClass: 'string', |
||||
|
isTable: false, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
// {
|
||||
|
// label: '任务明细ID',
|
||||
|
// field: 'jobDetailId',
|
||||
|
// sort: 'custom',
|
||||
|
// table: {
|
||||
|
// width: 150
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '原因', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1007, |
||||
|
hiddenInMain: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建者', |
||||
|
field: 'creator', |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 150 |
||||
|
}, |
||||
|
sortTableDefault: 1014, |
||||
|
hiddenInMain: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
formatter: dateFormatter, |
||||
|
detail: { |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
||||
|
}, |
||||
|
sort: 'custom', |
||||
|
table: { |
||||
|
width: 180 |
||||
|
}, |
||||
|
hiddenInMain: true, |
||||
|
sortTableDefault: 1014, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
valueFormat: 'x', |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
|
||||
|
])) |
||||
|
|
||||
|
//表单校验
|
||||
|
export const PurchasereturnRecordDetailRules = reactive({ |
||||
|
fromPackingNumber: [ |
||||
|
{ required: true, message: '请选择从包装号', trigger: 'change' } |
||||
|
], |
||||
|
toPackingNumber: [ |
||||
|
{ required: true, message: '请选择到包装号', trigger: 'change' } |
||||
|
], |
||||
|
fromBatch: [ |
||||
|
{ required: true, message: '请输入从批次', trigger: 'blur' } |
||||
|
], |
||||
|
toBatch: [ |
||||
|
{ required: true, message: '请输入到批次', trigger: 'blur' } |
||||
|
], |
||||
|
reason: [ |
||||
|
{ required: true, message: '请选择原因', trigger: 'change' } |
||||
|
], |
||||
|
fromLocationCode: [ |
||||
|
{ required: true, message: '请选择从库位代码', trigger: 'change' } |
||||
|
], |
||||
|
fromLocationGroupCode: [ |
||||
|
{ required: true, message: '请选择从库位组代码', trigger: 'change' } |
||||
|
], |
||||
|
fromAreaCode: [ |
||||
|
{ required: true, message: '请选择从库区代码', trigger: 'change' } |
||||
|
], |
||||
|
inventoryStatus: [ |
||||
|
{ required: true, message: '请选择库存状态', trigger: 'change' } |
||||
|
], |
||||
|
poNumber: [ |
||||
|
{ required: true, message: '请选择订单号', trigger: 'change' } |
||||
|
], |
||||
|
poline: [ |
||||
|
{ required: true, message: '请选择订单行', trigger: 'change' } |
||||
|
], |
||||
|
}) |
File diff suppressed because it is too large
File diff suppressed because it is too large
Loading…
Reference in new issue