zhaoxuebing 6 months ago
parent
commit
5dd519108d
  1. 203
      src/views/wms/basicDataManage/labelManage/locationLabel/index.vue
  2. 103
      src/views/wms/basicDataManage/labelManage/locationLabel/locationLabel.data.ts
  3. 10
      src/views/wms/basicDataManage/labelManage/manufacturePackage/manufacturePackage.data.ts
  4. 20
      src/views/wms/basicDataManage/labelManage/utensilPackage/utensilPackage.data.ts

203
src/views/wms/basicDataManage/labelManage/locationLabel/index.vue

@ -0,0 +1,203 @@
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search :schema="Package.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="Package.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 #number="{row}">
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
<span>{{ row.number }}</span>
</el-button>
</template>
<template #action="{ row }">
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
</template>
</Table>
</ContentWrap>
<!-- 详情 -->
<Detail ref="detailRef" :isBasic="true" :allSchemas="Package.allSchemas" />
</template>
<script setup lang="ts">
import download from '@/utils/download'
import { getAccessToken } from '@/utils/auth'
import { Package,PackageRules } from './locationLabel.data'
import * as BarbasicApi from '@/api/wms/barbasic'
import * as defaultButtons from '@/utils/disposition/defaultButtons'
import * as PackageApi from '@/api/wms/package'
import { formatTime } from '@/utils/index'
import * as Itempackaging from '@/api/wms/itempackaging'
//
defineOptions({ name: 'LocationLabel' })
const message = useMessage() //
const { t } = useI18n() //
const route = useRoute() //
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(Package.allSchemas.tableColumns)
/**
* PurchasePackage type = PurchaseLabel 采购件标签记录页面
* ManufacturePackage type = MakeLabel 制造件标签记录页面
* UtensilPackage type = ContainerLabel 器具标签记录页面
* SupplierPackage type = PurchaseLabel 供应商发货标签记录(用采购标签)
* LocationLabel type = LocationLabel 库位标签记录页面
*/
const type = ref('LocationLabel')
//
const updataTableColumns = (val) => {
tableColumns.value = val
}
const { tableObject, tableMethods } = useTable({
getListApi: BarbasicApi.getBarbasicPage //
})
tableObject.params.type = type.value
//
const { getList, setSearchParams } = tableMethods
//
const HeadButttondata = [
defaultButtons.defaultAddBtn({hasPermi:'wms:package:create'}), //
defaultButtons.defaultExportBtn({hasPermi:'wms:package:export'}), //
defaultButtons.defaultFreshBtn(null), //
defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), //
]
//
const buttonBaseClick = (val, item) => {
if (val == 'add') { //
openForm('create')
} else 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 = [
defaultButtons.mainListPointBtn(null), //
]
// -
const buttonTableClick = async (val, row) => {
if (val == 'edit') { //
openForm('update', row)
} else if (val == 'delete') { //
handleDelete(row.id)
} else if (val == 'point') { //
handlePoint(row)
}
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type: string, row?: number) => {
basicFormRef.value.open(type, row)
if (type == 'create') {
nextTick(() => {
basicFormRef.value.formRef.formModel.batch = formatTime(new Date(), 'yyyyMMdd')
})
}
}
/** 详情操作 */
const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
detailRef.value.openDetail(row, titleName, titleValue)
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
//
await message.delConfirm()
tableObject.loading = true
//
await BarbasicApi.deleteBarbasic(id)
tableObject.loading = false
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 BarbasicApi.exportBarbasic(tableObject.params)
download.excel(data, '库位标签.xlsx')
} catch {
} finally {
exportLoading.value = false
}
}
const BASE_URL = import.meta.env.VITE_JMREPORT_BASE_URL
const src = ref(BASE_URL + '/jmreport/view/929174607016689664?token=' + getAccessToken())
//
const handlePoint = async (row) => {
window.open(src.value+'&id='+row.id)
}
//
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters,
type:type.value
}
getList() //
}
/** 初始化 **/
onMounted(async () => {
getList()
})
</script>

103
src/views/wms/basicDataManage/labelManage/locationLabel/locationLabel.data.ts

@ -0,0 +1,103 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
// 表单校验
export const PackageRules = reactive({
number: [required],
itemCode: [required],
itemName: [required],
})
export const Package = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '标签号',
field: 'number',
sort: 'custom',
isSearch: true,
table: {
fixed: 'left'
}
},
{
label: '标签类型',
field: 'type',
sort: 'custom',
isSearch: true,
dictType: DICT_TYPE.LABEL_TYPE,
dictClass: 'string'
},
// {
// label: '标签模板',
// field: 'template',
// sort: 'custom',
// },
{
label: '标签状态',
field: 'status',
sort: 'custom',
isSearch: true,
dictType: DICT_TYPE.LABEL_STATUS,
dictClass: 'string'
},
{
label: '关联号',
field: 'relateNumber',
sort: 'custom',
},
{
label: '标签条码字符串',
field: 'barcodeString',
sort: 'custom',
table: {
width: 170,
}
},
{
label: '打印次数',
field: 'printTimes',
sort: 'custom',
form: {
component: 'InputNumber',
componentProps: {
min: 0
},
value: 0
},
},
{
label: '最后打印时间',
field: 'lastPrintTime',
sort: 'custom',
formatter: dateFormatter,
form: {
component: 'DatePicker',
componentProps: {
style: {width:'100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
},
{
label: '最后打印人ID',
field: 'lastPrintUserId',
sort: 'custom'
},
{
label: '最后打印人用户名',
field: 'lastPrintUserName',
sort: 'custom',
table: {
width: 170,
}
},
{
label: '操作',
field: 'action',
isForm: false,
table: {
width: 150,
fixed: 'right'
}
}
]))

10
src/views/wms/basicDataManage/labelManage/manufacturePackage/manufacturePackage.data.ts

@ -35,11 +35,11 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([
dictType: DICT_TYPE.LABEL_TYPE, dictType: DICT_TYPE.LABEL_TYPE,
dictClass: 'string' dictClass: 'string'
}, },
{ // {
label: '标签模板', // label: '标签模板',
field: 'template', // field: 'template',
sort: 'custom', // sort: 'custom',
}, // },
{ {
label: '标签状态', label: '标签状态',
field: 'status', field: 'status',

20
src/views/wms/basicDataManage/labelManage/utensilPackage/utensilPackage.data.ts

@ -37,11 +37,11 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([
dictType: DICT_TYPE.LABEL_TYPE, dictType: DICT_TYPE.LABEL_TYPE,
dictClass: 'string' dictClass: 'string'
}, },
{ // {
label: '标签模板', // label: '标签模板',
field: 'template', // field: 'template',
sort: 'custom', // sort: 'custom',
}, // },
{ {
label: '标签状态', label: '标签状态',
field: 'status', field: 'status',
@ -50,11 +50,11 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([
dictType: DICT_TYPE.LABEL_STATUS, dictType: DICT_TYPE.LABEL_STATUS,
dictClass: 'string' dictClass: 'string'
}, },
{ // {
label: '关联号', // label: '关联号',
field: 'relateNumber', // field: 'relateNumber',
sort: 'custom', // sort: 'custom',
}, // },
{ {
label: '标签条码字符串', label: '标签条码字符串',
field: 'barcodeString', field: 'barcodeString',

Loading…
Cancel
Save