Commit 1196ab7d by zhuzhequan

Merge branch 'refs/heads/release_v2.31.0' into dev_bug_update

# Conflicts:
#	components.d.ts
#	src/api/order.ts
parents 1466df3b 2b26f4ab
...@@ -30,7 +30,6 @@ declare module 'vue' { ...@@ -30,7 +30,6 @@ declare module 'vue' {
ElDropdown: typeof import('element-plus/es')['ElDropdown'] ElDropdown: typeof import('element-plus/es')['ElDropdown']
ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem'] ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem']
ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu'] ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu']
ElEmpty: typeof import('element-plus/es')['ElEmpty']
ElForm: typeof import('element-plus/es')['ElForm'] ElForm: typeof import('element-plus/es')['ElForm']
ElFormItem: typeof import('element-plus/es')['ElFormItem'] ElFormItem: typeof import('element-plus/es')['ElFormItem']
ElIcon: typeof import('element-plus/es')['ElIcon'] ElIcon: typeof import('element-plus/es')['ElIcon']
...@@ -44,8 +43,6 @@ declare module 'vue' { ...@@ -44,8 +43,6 @@ declare module 'vue' {
ElRadio: typeof import('element-plus/es')['ElRadio'] ElRadio: typeof import('element-plus/es')['ElRadio']
ElRadioButton: typeof import('element-plus/es')['ElRadioButton'] ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
ElRow: typeof import('element-plus/es')['ElRow']
ElScrollbar: typeof import('element-plus/es')['ElScrollbar']
ElSelect: typeof import('element-plus/es')['ElSelect'] ElSelect: typeof import('element-plus/es')['ElSelect']
ElStep: typeof import('element-plus/es')['ElStep'] ElStep: typeof import('element-plus/es')['ElStep']
ElSteps: typeof import('element-plus/es')['ElSteps'] ElSteps: typeof import('element-plus/es')['ElSteps']
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
"bignumber.js": "^9.3.0", "bignumber.js": "^9.3.0",
"dayjs": "^1.11.13", "dayjs": "^1.11.13",
"echarts": "^6.0.0", "echarts": "^6.0.0",
"element-plus": "^2.6.0", "element-plus": "^2.14.3",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"luxon": "^3.7.1", "luxon": "^3.7.1",
"pinia": "^2.1.7", "pinia": "^2.1.7",
......
...@@ -74,7 +74,6 @@ export function getFactoryOrderNewListApi( ...@@ -74,7 +74,6 @@ export function getFactoryOrderNewListApi(
/** 请求体与 `factory/podOrder/list_page` 一致 */ /** 请求体与 `factory/podOrder/list_page` 一致 */
export function getPodOrderAcceptedStatisticsApi( export function getPodOrderAcceptedStatisticsApi(
data: SearchForm, data: SearchForm,
currentPage: number,
pageSize: number, pageSize: number,
status?: string, status?: string,
subStatus?: number, subStatus?: number,
...@@ -88,7 +87,7 @@ export function getPodOrderAcceptedStatisticsApi( ...@@ -88,7 +87,7 @@ export function getPodOrderAcceptedStatisticsApi(
}> }>
>('factory/podOrder/acceptedStatistics', { >('factory/podOrder/acceptedStatistics', {
...normalizePodOrderQueryPayload({ ...data } as Record<string, unknown>), ...normalizePodOrderQueryPayload({ ...data } as Record<string, unknown>),
currentPage, currentPage: 1,
pageSize, pageSize,
status, status,
acceptedStatus: subStatus, acceptedStatus: subStatus,
......
...@@ -11,7 +11,11 @@ import { AddDeclarationRuleObj } from '@/views/logistics/types/declarationRule' ...@@ -11,7 +11,11 @@ import { AddDeclarationRuleObj } from '@/views/logistics/types/declarationRule'
import { LogisticsQuotation } from '@/views/logistics/types/logisticsQuotation' import { LogisticsQuotation } from '@/views/logistics/types/logisticsQuotation'
import { LogisticsPartitionObj } from '@/views/logistics/types/logisticsPartition' import { LogisticsPartitionObj } from '@/views/logistics/types/logisticsPartition'
import { ShippingAddressObj } from '@/views/logistics/types/shippingAddress' import { ShippingAddressObj } from '@/views/logistics/types/shippingAddress'
import { IsortingInfo } from '@/types/api/logistics' import {
IsortingInfo,
SortingPortAreaItem,
SortingPortOptionItem,
} from '@/types/api/logistics'
export interface ILogisticsList { export interface ILogisticsList {
code: string code: string
basicsName: string basicsName: string
...@@ -168,9 +172,12 @@ export function getLogisticsWayListByCompanyId(companyId: number) { ...@@ -168,9 +172,12 @@ export function getLogisticsWayListByCompanyId(companyId: number) {
} }
// 获取tictok物流承运商 // 获取tictok物流承运商
export function getTiktokCarrier() { export function getTiktokCarrier() {
return axios.get<never, BaseRespData<{ name: string; id: string, typeCode: string, label: string }[]>>( return axios.get<
'logisticsWay/getTiktokShippingProvider', never,
) BaseRespData<
{ name: string; id: string; typeCode: string; label: string }[]
>
>('logisticsWay/getTiktokShippingProvider')
} }
/** /**
...@@ -461,16 +468,14 @@ export function logisticsCompanyAllCodelist() { ...@@ -461,16 +468,14 @@ export function logisticsCompanyAllCodelist() {
'/logisticsCompany/allCodelist', '/logisticsCompany/allCodelist',
) )
} }
/** // 物流 分拣配置
分拣配置
*/
export function getsortingConfigListApi( export function getsortingConfigListApi(
data: IsortingInfo, data: IsortingInfo,
currentPage: number, currentPage: number,
pageSize: number, pageSize: number,
) { ) {
return axios.post<never, BasePaginationData<IsortingInfo>>( return axios.post<never, BasePaginationData<IsortingInfo>>(
'logistics/sortingConfig/list_page', 'logistics-sort-port-config/list_page',
{ {
...data, ...data,
currentPage, currentPage,
...@@ -481,34 +486,52 @@ export function getsortingConfigListApi( ...@@ -481,34 +486,52 @@ export function getsortingConfigListApi(
// 详情 // 详情
export function getSortingConfig(params: { id: number | string }) { export function getSortingConfig(params: { id: number | string }) {
return axios.get<never, BaseRespData<IsortingInfo>>( return axios.get<never, BaseRespData<IsortingInfo>>(
'logistics/sortingConfig/get', 'logistics-sort-port-config/get',
{ params }, { params },
) )
} }
export function createSortingApi(data: IsortingInfo) { export function createSortingApi(data: IsortingInfo) {
return axios.post<never, BaseRespData<never>>( return axios.post<never, BaseRespData<never>>(
'logistics/sortingConfig/add', 'logistics-sort-port-config/add',
data, data,
) )
} }
export function updateSortingApi(data: IsortingInfo) { export function updateSortingApi(data: IsortingInfo) {
return axios.post<never, BaseRespData<never>>( return axios.post<never, BaseRespData<never>>(
'logistics/sortingConfig/update', 'logistics-sort-port-config/update',
data, data,
) )
} }
export function deleteSortingApi(params: { export function deleteSortingApi(params: { id: number }) {
ids: string
type: string | number
}) {
return axios.get<never, BaseRespData<never>>( return axios.get<never, BaseRespData<never>>(
'logistics/sortingConfig/delete', 'logistics-sort-port-config/delete',
{ {
params, params,
}, },
) )
} }
// 分拣配置 查询可用分拣口
export function getSortingPortAreaListApi() {
return axios.get<never, BaseRespData<SortingPortAreaItem[]>>(
'logistics-sort-port-config/area-list',
)
}
// 分拣口规则 条件类型
export function getSortPortConditionTypeListApi() {
return axios.get<never, BaseRespData<SortingPortOptionItem[]>>(
'logistics-sort-port-config/condition-type',
)
}
// 分拣口规则 操作符
export function getSortPortOperatorListApi() {
return axios.get<never, BaseRespData<SortingPortOptionItem[]>>(
'logistics-sort-port-config/operator-list',
)
}
// 物流跟踪 获取菜单树 // 物流跟踪 获取菜单树
export function logisticStatusList() { export function logisticStatusList() {
return axios.get<never, BaseRespData<LogisticsTrackingTree[]>>( return axios.get<never, BaseRespData<LogisticsTrackingTree[]>>(
......
...@@ -804,3 +804,10 @@ export function getFactoryOrderFlowConfigApi() { ...@@ -804,3 +804,10 @@ export function getFactoryOrderFlowConfigApi() {
'report/factory-order-flow-config/get-config', 'report/factory-order-flow-config/get-config',
) )
} }
// 配货分拣 商品类目
export function getCategoryListApi() {
return axios.get<never, BaseRespData<OperatorList[]>>(
'allocation-sorting-rule/find-custom-category-list',
)
}
...@@ -553,7 +553,11 @@ export function getListCraftApi() { ...@@ -553,7 +553,11 @@ export function getListCraftApi() {
`factory/podJomallOrderProductCn/listCraft`, `factory/podJomallOrderProductCn/listCraft`,
) )
} }
export function getPodOrderCraftApi() {
return axios.post<never, BaseRespData<never>>(
`factory/podOrder/listCraft`,
)
}
// 批量下载 列表 // 批量下载 列表
export function batchDownloadApi( export function batchDownloadApi(
params: SearchForm, params: SearchForm,
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
</div> </div>
</template> </template>
</ElTableColumn> </ElTableColumn>
<RenderColumn v-else :col="column"> <RenderColumn v-if="column.type !== 'expand' && !column.hidden" :col="column">
<template v-for="(_, name) of slots" #[name]="scope"> <template v-for="(_, name) of slots" #[name]="scope">
<slot :name="name" v-bind="scope" /> <slot :name="name" v-bind="scope" />
</template> </template>
...@@ -126,11 +126,11 @@ const attrs = useAttrs() ...@@ -126,11 +126,11 @@ const attrs = useAttrs()
const slots = useSlots() as Record<string, Slot> const slots = useSlots() as Record<string, Slot>
const setCurrentRow = (row: T) => { const setCurrentRow = (row: T) => {
tableRef.value?.setCurrentRow(row) tableRef.value?.setCurrentRow(row as Record<PropertyKey, any>)
} }
const toggleRowSelection = (row: T, selected: boolean = true) => { const toggleRowSelection = (row: T, selected: boolean = true) => {
tableRef.value?.toggleRowSelection(row, selected) tableRef.value?.toggleRowSelection(row as Record<PropertyKey, any>, selected)
} }
const clearSelection = () => { const clearSelection = () => {
...@@ -139,11 +139,11 @@ const clearSelection = () => { ...@@ -139,11 +139,11 @@ const clearSelection = () => {
const toggleAllSelection = () => { const toggleAllSelection = () => {
tableRef.value?.toggleAllSelection() tableRef.value?.toggleAllSelection()
} }
const rowClick = (row:NonNullable<unknown>)=>{ const rowClick = (row: NonNullable<unknown>) => {
console.log(row) console.log(row)
console.log(tableRef.value,props.rowClickSelect) console.log(tableRef.value, props.rowClickSelect)
if(props.rowClickSelect){ if (props.rowClickSelect) {
tableRef.value?.toggleRowSelection(row,true) tableRef.value?.toggleRowSelection(row as Record<PropertyKey, any>, true)
} }
} }
const handleTableHeaderClick = (column: { type?: string }, event: Event) => { const handleTableHeaderClick = (column: { type?: string }, event: Event) => {
...@@ -170,7 +170,10 @@ const selectAllRows = (select: boolean, setInternalIsMore?: boolean) => { ...@@ -170,7 +170,10 @@ const selectAllRows = (select: boolean, setInternalIsMore?: boolean) => {
nextTick(() => { nextTick(() => {
if (tableRef.value && props.paginatedData.length > 0) { if (tableRef.value && props.paginatedData.length > 0) {
props.paginatedData.forEach((row) => { props.paginatedData.forEach((row) => {
tableRef.value?.toggleRowSelection(row, select) tableRef.value?.toggleRowSelection(
row as Record<PropertyKey, any>,
select,
)
}) })
} }
......
...@@ -15,11 +15,34 @@ export interface Ilogistics { ...@@ -15,11 +15,34 @@ export interface Ilogistics {
createTime?: string createTime?: string
updateTime?: string | null updateTime?: string | null
} }
export interface SortingPortCondition {
id?: number
ruleId?: number
conditionType: string
operator: string
conditionValue?: string | number | string[]
}
export interface IsortingInfo { export interface IsortingInfo {
id?: number id?: number
sortingFacility?: string | null sortingRemark?: string
sortingArea: number | null sortingArea?: number | null
sortingAreaName?: string | null sortingAreaName?: string | null
serviceCode: string | null matchType?: 1 | 2
type?: string | number sortNo?: number
conditions?: SortingPortCondition[]
conditionsText?: string
}
export interface SortingPortAreaItem {
code: number
desc: string
used: boolean
}
export interface SortingPortOptionItem {
desc: string
code: string
used?: boolean
} }
...@@ -304,6 +304,8 @@ export interface SortingList { ...@@ -304,6 +304,8 @@ export interface SortingList {
warehouseName: string warehouseName: string
autoPrint: boolean autoPrint: boolean
defaultWarehouse: 0 | 1 defaultWarehouse: 0 | 1
matchType: 1 | 2 // 匹配类型:1=所有条件(且) 2=任一条件(或)
conditions: SortingRuleCondition[] // 配货规则
} }
// 配货分拣 详情 // 配货分拣 详情
...@@ -328,7 +330,7 @@ export interface SortingRuleCondition { ...@@ -328,7 +330,7 @@ export interface SortingRuleCondition {
ruleId?: number ruleId?: number
conditionType: string // 条件 conditionType: string // 条件
operator: string // 操作符 operator: string // 操作符
conditionValue?: string | number | string[] conditionValue?: string | number | (string | number)[]
} }
// 配货分拣 配货区/操作符/条件 // 配货分拣 配货区/操作符/条件
......
...@@ -5,7 +5,12 @@ export interface StatusTreeNode { ...@@ -5,7 +5,12 @@ export interface StatusTreeNode {
unit?: string // 数量单位 unit?: string // 数量单位
children: StatusTreeNode[] | null children: StatusTreeNode[] | null
} }
export interface CraftData{
name:string
id:number | string
warehouseName:string
}
export interface SearchForm { export interface SearchForm {
status?: string status?: string
operationStatus?: string | string[] operationStatus?: string | string[]
......
...@@ -516,9 +516,14 @@ ...@@ -516,9 +516,14 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElRadioGroup, ElTree, TableColumnCtx } from 'element-plus' import {
ElMessage,
ElRadioGroup,
ElTree,
TableColumnCtx,
type TableInstance,
} from 'element-plus'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import { ElTable } from 'element-plus'
import usePageList from '@/utils/hooks/usePageList' import usePageList from '@/utils/hooks/usePageList'
import { useValue } from '@/utils/hooks/useValue' import { useValue } from '@/utils/hooks/useValue'
import { import {
...@@ -554,7 +559,9 @@ interface Tree { ...@@ -554,7 +559,9 @@ interface Tree {
code?: string code?: string
children?: Tree[] children?: Tree[]
} }
interface SummaryMethodProps<T = AccountStatementNote> { interface SummaryMethodProps<
T extends Record<PropertyKey, any> = AccountStatementNote,
> {
columns: TableColumnCtx<T>[] columns: TableColumnCtx<T>[]
data: T[] data: T[]
} }
...@@ -568,7 +575,7 @@ const dateRange = ref<string[]>([]) ...@@ -568,7 +575,7 @@ const dateRange = ref<string[]>([])
const selections = ref<AccountStatementNote[]>([]) const selections = ref<AccountStatementNote[]>([])
const detailList = ref<ItemList[]>([]) const detailList = ref<ItemList[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<AccountStatementNote | null>(null) const currentRow = ref<AccountStatementNote | null>(null)
const logList = ref<LogList[]>([]) const logList = ref<LogList[]>([])
...@@ -583,7 +590,7 @@ const { ...@@ -583,7 +590,7 @@ const {
refresh: search, refresh: search,
onCurrentPageChange: handleCurrentChange, onCurrentPageChange: handleCurrentChange,
onPageSizeChange: handleSizeChange, onPageSizeChange: handleSizeChange,
} = usePageList({ } = usePageList<AccountStatementNote>({
query: (page, pageSize) => query: (page, pageSize) =>
customJomallReconciliation( customJomallReconciliation(
{ {
...@@ -623,7 +630,7 @@ const getTreeNum = async () => { ...@@ -623,7 +630,7 @@ const getTreeNum = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: AccountStatementNote) => { const rowClick = (row: AccountStatementNote | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
...@@ -789,7 +796,7 @@ const submitConfirmOrder = async () => { ...@@ -789,7 +796,7 @@ const submitConfirmOrder = async () => {
search() search()
await getTreeNum() await getTreeNum()
if (singleTableRef.value) { if (singleTableRef.value) {
singleTableRef.value!.setCurrentRow(currentRow.value) singleTableRef.value!.setCurrentRow(currentRow.value ?? undefined)
} }
} }
watch( watch(
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
:title="isEdit ? '编辑配货区' : '新增配货区'" :title="isEdit ? '编辑配货区' : '新增配货区'"
:close-on-click-modal="false" :close-on-click-modal="false"
width="800px" width="800px"
destroy-on-close
> >
<el-form ref="formRef" label-width="170px" :model="form" :rules="rules"> <el-form ref="formRef" label-width="170px" :model="form" :rules="rules">
<el-form-item label="配货区说明" prop="areaDesc"> <el-form-item label="配货区说明" prop="areaDesc">
...@@ -63,9 +64,9 @@ ...@@ -63,9 +64,9 @@
<el-select <el-select
v-model="item.operator" v-model="item.operator"
style="width: 160px" style="width: 100px"
:disabled="isDisabled" :disabled="isDisabled"
placeholder="请选择关系" placeholder="关系"
> >
<el-option <el-option
v-for="operator in getAvailableOperators(item.conditionType)" v-for="operator in getAvailableOperators(item.conditionType)"
...@@ -79,13 +80,12 @@ ...@@ -79,13 +80,12 @@
<el-select <el-select
v-model="item.conditionValue" v-model="item.conditionValue"
class="platform-select" class="platform-select"
style="width: 160px" style="width: 190px"
:disabled="isDisabled" :disabled="isDisabled"
placeholder="请选择平台" placeholder="请选择平台"
filterable filterable
multiple multiple
collapse-tags collapse-tags
collapse-tags-tooltip
:max-collapse-tags="1" :max-collapse-tags="1"
clearable clearable
popper-class="customize-select-style" popper-class="customize-select-style"
...@@ -105,11 +105,47 @@ ...@@ -105,11 +105,47 @@
</el-option> </el-option>
</el-select> </el-select>
</template> </template>
<template v-else-if="item.conditionType === 'order_category'">
<el-cascader
v-model="item.conditionValue"
class="category-cascader"
style="width: 190px"
placeholder="请选择商品类目"
:options="categoryList"
:props="{
label: 'name',
value: 'id',
children: 'children',
multiple: true,
emitPath: true,
}"
collapse-tags
collapse-tags-tooltip
:max-collapse-tags="1"
tag-type="info"
show-checked-strategy="parent"
clearable
:disabled="isDisabled"
>
<template #tag="{ data, deleteTag }">
<el-tag
v-for="tag in data.slice(0, 1)"
:key="tag.key"
type="info"
:closable="tag.closable"
class="category-cascader-tag"
@close="deleteTag(tag)"
>
{{ tag.text }}
</el-tag>
</template>
</el-cascader>
</template>
<template v-else> <template v-else>
<el-input-number <el-input-number
v-model="item.conditionValue" v-model="item.conditionValue"
style="width: 160px" style="width: 190px"
:min="1" :min="1"
:max="999" :max="999"
:disabled="isDisabled" :disabled="isDisabled"
...@@ -202,19 +238,7 @@ import type { ...@@ -202,19 +238,7 @@ import type {
SortingRuleCondition, SortingRuleCondition,
SortingRuleDetail, SortingRuleDetail,
} from '@/types/api/order' } from '@/types/api/order'
import { import { getAreaListApi, addAreaApi, editAreaApi } from '@/api/order'
getAreaListApi,
getConditionTypeListApi,
getOperatorListApi,
addAreaApi,
editAreaApi,
} from '@/api/order'
// 配货规则条件
const pickingRuleList = ref<OperatorList[]>()
// 配货规则操作符
const operatorList = ref<OperatorList[]>()
const props = defineProps<{ const props = defineProps<{
modelValue: boolean modelValue: boolean
...@@ -223,6 +247,9 @@ const props = defineProps<{ ...@@ -223,6 +247,9 @@ const props = defineProps<{
warehouseId: number warehouseId: number
warehouseName: string warehouseName: string
isDisabled?: boolean isDisabled?: boolean
categoryList: OperatorList[]
pickingRuleList: OperatorList[]
operatorList: OperatorList[]
}>() }>()
const emit = defineEmits<{ const emit = defineEmits<{
(e: 'update:modelValue', value: boolean): void (e: 'update:modelValue', value: boolean): void
...@@ -264,33 +291,38 @@ const getAvailablePickingRules = (currentIndex: number) => { ...@@ -264,33 +291,38 @@ const getAvailablePickingRules = (currentIndex: number) => {
const selectedFields = form.value.conditions const selectedFields = form.value.conditions
.filter((_, index) => index !== currentIndex) .filter((_, index) => index !== currentIndex)
.map((item) => item.conditionType) .map((item) => item.conditionType)
return pickingRuleList.value?.filter( return props.pickingRuleList.filter(
(rule) => !selectedFields.includes(rule.code), (rule) => !selectedFields.includes(rule.code),
) )
} }
// 根据配货规则类型获取可用的操作符 // 根据配货规则类型获取可用的操作符
const getAvailableOperators = (conditionType: string) => { const getAvailableOperators = (conditionType: string) => {
const list = operatorList.value ?? [] const list = props.operatorList
if (conditionType === 'order_total_num') { const matchers: Record<string, (code: string) => boolean> = {
return list.filter((operator) => operator.code !== 'in') order_total_num: (code) => code !== 'in' && code !== 'contain',
} else if (conditionType === 'order_platform') { order_platform: (code) => code === 'in',
return list.filter((operator) => operator.code === 'in') order_category: (code) => code === 'contain',
} }
return list const matcher = matchers[conditionType]
return matcher ? list.filter((operator) => matcher(operator.code)) : list
} }
// 配货规则条件改变 // 配货规则条件改变
const handleConditionTypeChange = (item: SortingRuleCondition) => { const handleConditionTypeChange = (item: SortingRuleCondition) => {
// 平台 只能选 in属于 switch (item.conditionType) {
if (item.conditionType === 'order_platform') { case 'order_platform':
item.conditionValue = undefined item.conditionValue = undefined
item.operator = 'in' item.operator = 'in'
} break
// 订单总件数 清空字段 case 'order_total_num':
else if (item.conditionType === 'order_total_num') {
item.conditionValue = undefined item.conditionValue = undefined
item.operator = 'gt' item.operator = 'gt'
break
case 'order_category':
item.conditionValue = undefined
item.operator = 'contain'
break
} }
} }
...@@ -311,7 +343,8 @@ const validateConditions = ( ...@@ -311,7 +343,8 @@ const validateConditions = (
for (let i = 0; i < items.length; i++) { for (let i = 0; i < items.length; i++) {
const item = items[i] const item = items[i]
const isValueValid = const isValueValid =
item.conditionType === 'order_platform' item.conditionType === 'order_platform' ||
item.conditionType === 'order_category'
? Array.isArray(item.conditionValue) && item.conditionValue.length > 0 ? Array.isArray(item.conditionValue) && item.conditionValue.length > 0
: item.conditionValue !== null && item.conditionValue !== undefined : item.conditionValue !== null && item.conditionValue !== undefined
if (!item.conditionType || !isValueValid || !item.operator) { if (!item.conditionType || !isValueValid || !item.operator) {
...@@ -352,14 +385,29 @@ const rules = computed(() => { ...@@ -352,14 +385,29 @@ const rules = computed(() => {
const platformList = platformJson const platformList = platformJson
// 将详情返回的字符串条件值转为表单可用格式
const formatConditionsForForm = (conditions: SortingRuleCondition[]) => const formatConditionsForForm = (conditions: SortingRuleCondition[]) =>
conditions.map((item) => ({ conditions.map((item) => {
if (
typeof item.conditionValue !== 'string' ||
(item.conditionType !== 'order_platform' &&
item.conditionType !== 'order_category')
) {
return item
}
const values = item.conditionValue.split(',').filter(Boolean)
// 类目 id 一般为 number,需与级联 options 的 id 类型一致才能回显
if (item.conditionType === 'order_category') {
return {
...item, ...item,
conditionValue: conditionValue: values.map((v) => {
typeof item.conditionValue === 'string' const num = Number(v)
? item.conditionValue.split(',').filter(Boolean) return Number.isNaN(num) ? v : num
: item.conditionValue, }),
})) }
}
return { ...item, conditionValue: values }
})
// 添加配货规则 // 添加配货规则
const addPickingRuleItem = () => { const addPickingRuleItem = () => {
...@@ -397,20 +445,6 @@ const loadAreaList = async () => { ...@@ -397,20 +445,6 @@ const loadAreaList = async () => {
} }
} }
// 获取配货规则条件
const getConditionTypeList = async () => {
const res = await getConditionTypeListApi()
if (res.code !== 200) return
pickingRuleList.value = res.data
}
// 获取配货规则操作符
const getOperatorList = async () => {
const res = await getOperatorListApi()
if (res.code !== 200) return
operatorList.value = res.data
}
// 提交 // 提交
const handleSubmit = async () => { const handleSubmit = async () => {
form.value.warehouseId = props.warehouseId form.value.warehouseId = props.warehouseId
...@@ -425,7 +459,9 @@ const handleSubmit = async () => { ...@@ -425,7 +459,9 @@ const handleSubmit = async () => {
(item): SortingRuleCondition => ({ (item): SortingRuleCondition => ({
...item, ...item,
conditionValue: Array.isArray(item.conditionValue) conditionValue: Array.isArray(item.conditionValue)
? item.conditionValue.join(',') ? item.conditionValue
.map((v) => (Array.isArray(v) ? v[v.length - 1] : v))
.join(',')
: item.conditionValue, : item.conditionValue,
}), }),
), ),
...@@ -442,7 +478,7 @@ const handleSubmit = async () => { ...@@ -442,7 +478,7 @@ const handleSubmit = async () => {
} }
onMounted(async () => { onMounted(async () => {
await Promise.all([loadAreaList(), getConditionTypeList(), getOperatorList()]) await loadAreaList()
if (props.editData) { if (props.editData) {
form.value = { form.value = {
...props.editData, ...props.editData,
...@@ -500,7 +536,6 @@ onMounted(async () => { ...@@ -500,7 +536,6 @@ onMounted(async () => {
:deep(.el-select__selection) { :deep(.el-select__selection) {
flex-wrap: nowrap; flex-wrap: nowrap;
overflow: hidden;
} }
:deep(.el-select__selected-item) { :deep(.el-select__selected-item) {
...@@ -529,4 +564,21 @@ onMounted(async () => { ...@@ -529,4 +564,21 @@ onMounted(async () => {
flex-wrap: wrap; flex-wrap: wrap;
} }
} }
// cascader 样式,确保单行显示
.category-cascader {
.el-cascader__tags {
display: flex !important;
flex-wrap: nowrap !important;
align-items: center;
overflow: hidden;
}
.category-cascader-tag {
flex: 0 1 auto !important;
min-width: 0 !important;
max-width: 100%;
overflow: hidden;
}
}
</style> </style>
...@@ -47,6 +47,62 @@ ...@@ -47,6 +47,62 @@
class="table-container" class="table-container"
> >
<TableView :paginated-data="sortingList" :columns="columns"> <TableView :paginated-data="sortingList" :columns="columns">
<template #conditions="{ row }">
<div v-if="row.areaCode === 'AREA_0'">默认分拣口</div>
<div v-else class="conditions-text">
<div class="match-type">
{{
row.matchType === 1
? '满足以下所有条件:'
: '满足以下任一条件:'
}}
</div>
<div
v-for="(item, index) in row.conditions || []"
:key="index"
class="condition-item"
>
<span
class="condition-text"
:title="formatConditionText(item)"
>
{{ index + 1 }}{{ formatConditionText(item) }}
</span>
<el-popover
v-if="item.conditionType === 'order_category'"
placement="bottom"
:width="'auto'"
trigger="click"
>
<el-cascader-panel
class="category-cascader-panel-readonly"
:model-value="getCategoryCascaderValue(item)"
:options="categoryList"
:props="{
label: 'name',
value: 'id',
children: 'children',
multiple: true,
emitPath: true,
checkOnClickNode: false,
checkOnClickLeaf: false,
showPrefix: false,
}"
/>
<template #reference>
<el-button
type="primary"
link
class="category-detail-btn"
>
详情
</el-button>
</template>
</el-popover>
</div>
</div>
</template>
<template #autoPrint="{ row }"> <template #autoPrint="{ row }">
{{ row.autoPrint ? '开启' : '关闭' }} {{ row.autoPrint ? '开启' : '关闭' }}
</template> </template>
...@@ -78,6 +134,9 @@ ...@@ -78,6 +134,9 @@
:edit-data="editData" :edit-data="editData"
:warehouse-id="searchForm.warehouseId" :warehouse-id="searchForm.warehouseId"
:warehouse-name="searchForm.warehouseName" :warehouse-name="searchForm.warehouseName"
:category-list="categoryList"
:picking-rule-list="pickingRuleList"
:operator-list="operatorList"
@submit="getSortingRuleList" @submit="getSortingRuleList"
/> />
<el-dialog <el-dialog
...@@ -97,7 +156,9 @@ import { loadWarehouseListApi } from '@/api/common' ...@@ -97,7 +156,9 @@ import { loadWarehouseListApi } from '@/api/common'
import type { WarehouseListData } from '@/types' import type { WarehouseListData } from '@/types'
import type { import type {
LogListData, LogListData,
OperatorList,
SortingList, SortingList,
SortingRuleCondition,
SortingRuleDetail, SortingRuleDetail,
} from '@/types/api/order' } from '@/types/api/order'
import type { CustomColumn } from '@/types/table' import type { CustomColumn } from '@/types/table'
...@@ -107,6 +168,9 @@ import { ...@@ -107,6 +168,9 @@ import {
getConfigApi, getConfigApi,
updateConfighApi, updateConfighApi,
getAreaInfoApi, getAreaInfoApi,
getCategoryListApi,
getConditionTypeListApi,
getOperatorListApi,
} from '@/api/order' } from '@/api/order'
import TableView from '@/components/TableView.vue' import TableView from '@/components/TableView.vue'
import LogList from '@/components/LogList.vue' import LogList from '@/components/LogList.vue'
...@@ -128,11 +192,13 @@ const columns: CustomColumn<SortingList>[] = [ ...@@ -128,11 +192,13 @@ const columns: CustomColumn<SortingList>[] = [
align: 'center', align: 'center',
}, },
{ {
key: 'conditionsText', key: 'conditions',
prop: 'conditionsText', prop: 'conditions',
label: '配货规则', label: '配货规则',
minWidth: 250, minWidth: 250,
align: 'left', align: 'left',
slot: 'conditions',
showOverflowTooltip: false,
}, },
{ {
key: 'areaName', key: 'areaName',
...@@ -174,6 +240,9 @@ const columns: CustomColumn<SortingList>[] = [ ...@@ -174,6 +240,9 @@ const columns: CustomColumn<SortingList>[] = [
const warehouseList = ref<WarehouseListData[]>([]) // 仓库列表 const warehouseList = ref<WarehouseListData[]>([]) // 仓库列表
const sortingList = ref<SortingList[]>([]) // 规则列表 const sortingList = ref<SortingList[]>([]) // 规则列表
const categoryList = ref<OperatorList[]>([]) // 商品类目
const pickingRuleList = ref<OperatorList[]>([]) // 配货规则条件
const operatorList = ref<OperatorList[]>([]) // 配货规则操作符
const isEnableSorting = ref(false) // 是否开启配货分拣 const isEnableSorting = ref(false) // 是否开启配货分拣
const currentId = ref(0) // 当前操作id const currentId = ref(0) // 当前操作id
const isEdit = ref(false) // 是否编辑 const isEdit = ref(false) // 是否编辑
...@@ -188,6 +257,139 @@ const searchForm = ref({ ...@@ -188,6 +257,139 @@ const searchForm = ref({
warehouseName: '', warehouseName: '',
}) })
type CategoryNode = OperatorList & {
id?: number | string
name?: string
children?: CategoryNode[]
}
// 获取节点下全部叶子 id
const getCategoryLeafIds = (node: CategoryNode): string[] => {
if (!node.children?.length) return node.id != null ? [String(node.id)] : []
return node.children.flatMap(getCategoryLeafIds)
}
// 格式化已选类目:某项下所有子项都被选中时,只展示该项路径
const formatSelectedCategories = (
list: CategoryNode[],
selectedIds: Set<string>,
path: string[] = [],
): string[] => {
const result: string[] = []
for (const item of list) {
const currentPath = [...path, item.name ?? '']
const leafIds = getCategoryLeafIds(item)
const allSelected =
leafIds.length > 0 && leafIds.every((id) => selectedIds.has(id))
if (allSelected) {
result.push(currentPath.join('->'))
continue
}
if (item.children?.length) {
result.push(
...formatSelectedCategories(item.children, selectedIds, currentPath),
)
} else if (item.id != null && selectedIds.has(String(item.id))) {
result.push(currentPath.join('->'))
}
}
return result
}
// 根据叶子 id 查找类目完整路径(用于级联回显)
const findCategoryPath = (
list: CategoryNode[],
targetId: string | number,
path: (string | number)[] = [],
): (string | number)[] | null => {
for (const item of list) {
if (item.id == null) continue
const currentPath = [...path, item.id]
if (String(item.id) === String(targetId)) return currentPath
if (item.children?.length) {
const found = findCategoryPath(item.children, targetId, currentPath)
if (found) return found
}
}
return null
}
// 将条件值转为级联回显路径
const getCategoryCascaderValue = (item: SortingRuleCondition) => {
const ids = String(item.conditionValue ?? '')
.split(',')
.filter(Boolean)
return ids
.map((id) => {
const num = Number(id)
return findCategoryPath(
categoryList.value as CategoryNode[],
Number.isNaN(num) ? id : num,
)
})
.filter((path): path is (string | number)[] => !!path)
}
// 配货规则展示文案
const formatConditionText = (item: SortingRuleCondition) => {
// 配货规则条件
const typeDesc =
pickingRuleList.value.find((r) => r.code === item.conditionType)?.desc ??
item.conditionType
// 配货规则操作符
const operatorDesc =
operatorList.value.find((r) => r.code === item.operator)?.desc ??
item.operator
let valueText = ''
switch (item.conditionType) {
case 'order_category': {
const selectedIds = new Set(
String(item.conditionValue ?? '')
.split(',')
.filter(Boolean),
)
valueText = formatSelectedCategories(
categoryList.value as CategoryNode[],
selectedIds,
).join('、')
break
}
case 'order_platform':
valueText = String(item.conditionValue ?? '')
.split(',')
.filter(Boolean)
.join('、')
break
default:
valueText = String(item.conditionValue ?? '')
break
}
return `${typeDesc}${operatorDesc} ${valueText}`
}
// 获取商品类目
const getCategoryList = async () => {
const res = await getCategoryListApi()
if (res.code !== 200) return
categoryList.value = res.data
}
// 获取配货规则条件
const getConditionTypeList = async () => {
const res = await getConditionTypeListApi()
if (res.code !== 200) return
pickingRuleList.value = res.data
}
// 获取配货规则操作符
const getOperatorList = async () => {
const res = await getOperatorListApi()
if (res.code !== 200) return
operatorList.value = res.data
}
// 加载仓库列表 // 加载仓库列表
const loadWarehouseList = async () => { const loadWarehouseList = async () => {
try { try {
...@@ -303,9 +505,16 @@ const deleteArea = async (id: number) => { ...@@ -303,9 +505,16 @@ const deleteArea = async (id: number) => {
// } // }
onMounted(async () => { onMounted(async () => {
await loadWarehouseList() loading.value = true
await getFunctionSwitch() await Promise.all([
loadWarehouseList(),
getFunctionSwitch(),
getCategoryList(),
getConditionTypeList(),
getOperatorList(),
])
await getSortingRuleList() await getSortingRuleList()
loading.value = false
}) })
</script> </script>
...@@ -340,4 +549,46 @@ onMounted(async () => { ...@@ -340,4 +549,46 @@ onMounted(async () => {
margin-top: 10px; margin-top: 10px;
} }
} }
.conditions-text {
padding: 4px 0;
line-height: 1.6;
overflow: hidden;
.match-type {
color: #666;
margin-bottom: 2px;
}
.condition-item {
display: flex;
align-items: center;
color: #333;
overflow: hidden;
min-width: 0;
.condition-text {
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.category-detail-btn {
flex-shrink: 0;
margin-left: 4px;
padding: 0;
height: auto;
}
}
}
</style>
<style lang="scss">
// 详情面板只读:可展开,禁止勾选
.category-cascader-panel-readonly {
.el-checkbox {
pointer-events: none;
}
}
</style> </style>
...@@ -29,7 +29,7 @@ const processTypeMap: Record<string, string> = { ...@@ -29,7 +29,7 @@ const processTypeMap: Record<string, string> = {
QT: '其他', QT: '其他',
} }
export function useOrderDictionaries() { export function useOrderDictionaries(dontLoadCraft?:boolean) {
const userMarkList = ref<string[]>([]) const userMarkList = ref<string[]>([])
const receiverCountryList = ref<{ countryCode: string; nameCn: string }[]>([]) const receiverCountryList = ref<{ countryCode: string; nameCn: string }[]>([])
const customTagList = ref<{ id: string; name: string }[]>([]) const customTagList = ref<{ id: string; name: string }[]>([])
...@@ -136,16 +136,20 @@ export function useOrderDictionaries() { ...@@ -136,16 +136,20 @@ export function useOrderDictionaries() {
} }
const loadAllDictionaries = async () => { const loadAllDictionaries = async () => {
await Promise.all([ const arr = [
loadCraftList(),
getUserMark(), getUserMark(),
getCustomTagList(), getCustomTagList(),
getLogisticsCompanyAllCodelist(), getLogisticsCompanyAllCodelist(),
]) ]
if(!dontLoadCraft){
arr.unshift(loadCraftList())
}
await Promise.all(arr)
} }
return { return {
userMarkList, userMarkList,
processTypeMap,
receiverCountryList, receiverCountryList,
customTagList, customTagList,
allCodelist, allCodelist,
......
...@@ -91,7 +91,6 @@ export function useOrderStatusTree(options: UseOrderStatusTreeOptions) { ...@@ -91,7 +91,6 @@ export function useOrderStatusTree(options: UseOrderStatusTreeOptions) {
try { try {
const res = await getPodOrderAcceptedStatisticsApi( const res = await getPodOrderAcceptedStatisticsApi(
getQueryPayload(), getQueryPayload(),
currentPage.value,
pageSize.value, pageSize.value,
status.value, status.value,
getListPageAcceptedSubStatus(), getListPageAcceptedSubStatus(),
......
...@@ -172,7 +172,7 @@ ...@@ -172,7 +172,7 @@
<ElFormItem label="工艺" label-width="50px"> <ElFormItem label="工艺" label-width="50px">
<LogisticsWaySelect <LogisticsWaySelect
v-model="searchForm.craftCode" v-model="searchForm.craftCode"
:company-list="craftList" :company-list="podCraftList"
:start-width="'150px'" :start-width="'150px'"
search-placeholder="搜索工艺名称" search-placeholder="搜索工艺名称"
start-placeholder="请选择工艺名称" start-placeholder="请选择工艺名称"
...@@ -1281,10 +1281,11 @@ import type { BaseRespData } from '@/types/api' ...@@ -1281,10 +1281,11 @@ import type { BaseRespData } from '@/types/api'
import type { import type {
FactoryOrderNewListData, FactoryOrderNewListData,
ProductListData, ProductListData,
CraftData,
ExportParams, ExportParams,
operateOrderListData, operateOrderListData,
} from '@/types/api/order/factoryOrderNew' } from '@/types/api/order/factoryOrderNew'
import type { AddressInfo } from '@/types/api/podCnOrder' import type { AddressInfo, CraftListData } from '@/types/api/podCnOrder'
import platformJson from '../../../json/platform.json' import platformJson from '../../../json/platform.json'
import { import {
refreshProductInfoApi, refreshProductInfoApi,
...@@ -1365,10 +1366,11 @@ import { useOrderBatchActions } from './hooks/useOrderBatchActions' ...@@ -1365,10 +1366,11 @@ import { useOrderBatchActions } from './hooks/useOrderBatchActions'
import { ElButton, ElTag } from 'element-plus' import { ElButton, ElTag } from 'element-plus'
import OrderInventoryDetailDialog from './component/OrderInventoryDialog.vue' import OrderInventoryDetailDialog from './component/OrderInventoryDialog.vue'
import { downloadByUrl } from '@/utils/index.ts' import { downloadByUrl } from '@/utils/index.ts'
import { getPodOrderCraftApi } from '@/api/podCnOrder.ts'
const resultInfo = ref<ResultInfoDataItem[]>([]) const resultInfo = ref<ResultInfoDataItem[]>([])
const resultRefs = ref() const resultRefs = ref()
const podCraftList = ref<CraftData[]>([])
const statusSidebarCollapsed = ref(false) const statusSidebarCollapsed = ref(false)
const toggleStatusSidebar = () => { const toggleStatusSidebar = () => {
statusSidebarCollapsed.value = !statusSidebarCollapsed.value statusSidebarCollapsed.value = !statusSidebarCollapsed.value
...@@ -1398,13 +1400,13 @@ const { ...@@ -1398,13 +1400,13 @@ const {
receiverCountryList, receiverCountryList,
customTagList, customTagList,
allCodelist, allCodelist,
craftList,
warehouseList, warehouseList,
processTypeMap,
productTypeGroups, productTypeGroups,
getReceiverCountryList, getReceiverCountryList,
loadWarehouseList, loadWarehouseList,
loadAllDictionaries, loadAllDictionaries,
} = useOrderDictionaries() } = useOrderDictionaries(true)
const refreshCurrentViewProxy = ref<() => void>(() => {}) const refreshCurrentViewProxy = ref<() => void>(() => {})
let getFactoryOrderSearchVisibilityContext: () => FactoryOrderSearchQueryVisibilityContext = let getFactoryOrderSearchVisibilityContext: () => FactoryOrderSearchQueryVisibilityContext =
...@@ -1521,6 +1523,17 @@ const getListQueryPayload = () => { ...@@ -1521,6 +1523,17 @@ const getListQueryPayload = () => {
return payload return payload
} }
const getCraft = async () => {
const res = await getPodOrderCraftApi()
const data: CraftListData[] = res.data
podCraftList.value = data.map((item:CraftListData) => ({
id: item.craftCode,
name: item.craftName,
warehouseName: processTypeMap[item.craftType] ?? '其他',
}))
}
getCraft()
const { const {
subLoading, subLoading,
activeTab, activeTab,
...@@ -1917,11 +1930,19 @@ const mainColumns = computed(() => [ ...@@ -1917,11 +1930,19 @@ const mainColumns = computed(() => [
}, },
{ {
prop: 'statusName', prop: 'statusName',
label: status.value !== 'SUSPEND' ? '订单状态' : '挂起前状态', label:'挂起前状态',
minWidth: 120,
hidden:status.value !== 'SUSPEND',
align: 'center'
},
{
prop: 'statusName',
hidden:status.value === 'SUSPEND',
label: '订单状态',
minWidth: 120, minWidth: 120,
align: 'center', align: 'center',
render: (row: FactoryOrderNewListData) => { render: (row: FactoryOrderNewListData) => {
return <span>{row.pause ? '挂起' : row.statusName}</span> return <span>{ row.pause ? '挂起' : row.statusName}</span>
}, },
}, },
{ {
...@@ -2348,6 +2369,13 @@ const baseProductColumns = computed(() => [ ...@@ -2348,6 +2369,13 @@ const baseProductColumns = computed(() => [
align: 'center', align: 'center',
}, },
{ {
key: 'categoryName',
prop: 'categoryName',
label: '商品类目',
minWidth: 160,
align: 'center',
},
{
prop: 'price', prop: 'price',
label: '价格', label: '价格',
minWidth: 100, minWidth: 100,
...@@ -2896,12 +2924,19 @@ const handleSeedingWall = (type: 'print' | 'sort') => { ...@@ -2896,12 +2924,19 @@ const handleSeedingWall = (type: 'print' | 'sort') => {
podOrderVisible.value = true podOrderVisible.value = true
} }
const printOrder = async ( /** LODOP 单例不可并发,打印串行 */
let printOrderChain: Promise<void> = Promise.resolve()
const printOrder = (
data: OrderData, data: OrderData,
callback: (status: boolean) => void, callback: (status: boolean) => void,
) => { ) => {
const run = async () => {
const lodop = getCLodop(null, null) const lodop = getCLodop(null, null)
if (!lodop) return if (!lodop) {
callback && callback(false)
return
}
lodop.PRINT_INIT('打印内容') lodop.PRINT_INIT('打印内容')
const printerIndex = lodop.SET_PRINTER_INDEX(sheetPrinter.value) const printerIndex = lodop.SET_PRINTER_INDEX(sheetPrinter.value)
console.log( console.log(
...@@ -2956,11 +2991,9 @@ const printOrder = async ( ...@@ -2956,11 +2991,9 @@ const printOrder = async (
console.log('PRINT_STATUS_OK:', jobCode, `ok: ${ok}`) console.log('PRINT_STATUS_OK:', jobCode, `ok: ${ok}`)
if (ok == 1) { if (ok == 1) {
console.log('打印成功') console.log('打印成功')
// 打印状态:成功
callback && callback(true) callback && callback(true)
return return
} }
// 如果打印状态表示未成功或者返回了空,继续获取任务是否存在
const exist = await lodopCall((lodop) => const exist = await lodopCall((lodop) =>
lodop.GET_VALUE('PRINT_STATUS_EXIST', jobCode), lodop.GET_VALUE('PRINT_STATUS_EXIST', jobCode),
) )
...@@ -2974,7 +3007,6 @@ const printOrder = async ( ...@@ -2974,7 +3007,6 @@ const printOrder = async (
) )
if (exist == 0) { if (exist == 0) {
console.log('任务不存在了', `exist:${exist}`) console.log('任务不存在了', `exist:${exist}`)
// 任务不存在了
callback && callback(true) callback && callback(true)
return return
} }
...@@ -2991,6 +3023,9 @@ const printOrder = async ( ...@@ -2991,6 +3023,9 @@ const printOrder = async (
lodop.PRINT() lodop.PRINT()
callback && callback(false) callback && callback(false)
} }
}
printOrderChain = printOrderChain.then(run, run)
} }
let _lodop: LODOPObject | null = null let _lodop: LODOPObject | null = null
let _lodopCallback: { [key: string]: (value: string) => void } = {} let _lodopCallback: { [key: string]: (value: string) => void } = {}
......
...@@ -198,7 +198,6 @@ ...@@ -198,7 +198,6 @@
> >
<ElButton <ElButton
:disabled=" :disabled="
selection.find((item) => item.manuscriptStatus !== 30) ||
selection.length !== 1 selection.length !== 1
" "
type="warning" type="warning"
......
...@@ -1251,9 +1251,6 @@ const initOrderDetailBox = async (type: 'scan' | 'manual' = 'manual') => { ...@@ -1251,9 +1251,6 @@ const initOrderDetailBox = async (type: 'scan' | 'manual' = 'manual') => {
if (type === 'manual' && boxs.length > 0) { if (type === 'manual' && boxs.length > 0) {
nextTick(async () => { nextTick(async () => {
// 切换箱子至验货完成的箱子
boxChange.value = true
boxIndex.value = boxs[0] as number
const token = ++pickFinishedAlertToken const token = ++pickFinishedAlertToken
if (token > 1) { if (token > 1) {
ElMessageBox.close() ElMessageBox.close()
...@@ -1338,7 +1335,8 @@ const nextStep = async (callback: () => void) => { ...@@ -1338,7 +1335,8 @@ const nextStep = async (callback: () => void) => {
callback && callback() callback && callback()
}) })
} catch (error) { } catch (error) {
productionOrderRef.value.focus() // 取消打单完成时仍允许切换箱子 / 关闭弹窗
callback && callback()
console.error(error) console.error(error)
} }
} else { } else {
...@@ -1448,15 +1446,24 @@ const handlePrinterChange = (value: string) => { ...@@ -1448,15 +1446,24 @@ const handlePrinterChange = (value: string) => {
emit('set-printer', value) emit('set-printer', value)
} }
/** 已自动打印过的订单,避免 WS 回写清掉 printResult 后重复打印 */
const autoPrintedIds = new Set<number>()
const print = (data: OrderData, forcePrint = false, callback?: () => void) => { const print = (data: OrderData, forcePrint = false, callback?: () => void) => {
const _boxIndex = boxIndex.value const _boxIndex = boxIndex.value
const orderId = data.id
if (!forcePrint && data.printResult) { if (
!forcePrint &&
(data.printResult || (orderId != null && autoPrintedIds.has(orderId)))
) {
callback && callback() callback && callback()
return return
} }
if (!forcePrint && orderId != null) autoPrintedIds.add(orderId)
props.printOrder(data, (status: boolean) => { props.printOrder(data, (status: boolean) => {
if (!status && orderId != null) autoPrintedIds.delete(orderId)
callback && callback() callback && callback()
const item = podBoxList.value?.find((item) => item.box === _boxIndex) const item = podBoxList.value?.find((item) => item.box === _boxIndex)
if (item && item.data) { if (item && item.data) {
...@@ -1764,6 +1771,7 @@ const resetPlatform = () => { ...@@ -1764,6 +1771,7 @@ const resetPlatform = () => {
.basic-info-item { .basic-info-item {
display: flex; display: flex;
align-items: center; align-items: center;
overflow: hidden;
span:last-child { span:last-child {
flex: 1; flex: 1;
......
...@@ -901,7 +901,7 @@ ...@@ -901,7 +901,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElTable, ElTree, TableColumnCtx } from 'element-plus' import { ElMessage, ElTree, TableColumnCtx, type TableInstance } from 'element-plus'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import { CircleClose, Plus } from '@element-plus/icons-vue' import { CircleClose, Plus } from '@element-plus/icons-vue'
// import pendingReconciliation from './pendingReconciliation.vue' // import pendingReconciliation from './pendingReconciliation.vue'
...@@ -945,7 +945,9 @@ interface Tree { ...@@ -945,7 +945,9 @@ interface Tree {
children?: Tree[] children?: Tree[]
} }
interface SummaryMethodProps<T = AccountStatementNote> { interface SummaryMethodProps<
T extends Record<PropertyKey, any> = AccountStatementNote,
> {
columns: TableColumnCtx<T>[] columns: TableColumnCtx<T>[]
data: T[] data: T[]
} }
...@@ -973,7 +975,7 @@ const selections = ref<AccountStatementNote[]>([]) ...@@ -973,7 +975,7 @@ const selections = ref<AccountStatementNote[]>([])
const detailSelections = ref<ItemList[]>([]) const detailSelections = ref<ItemList[]>([])
const detailList = ref<ItemList[]>([]) const detailList = ref<ItemList[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<AccountStatementNote | null>(null) const currentRow = ref<AccountStatementNote | null>(null)
const paymentDialogVisible = ref(false) const paymentDialogVisible = ref(false)
...@@ -1008,7 +1010,7 @@ const { ...@@ -1008,7 +1010,7 @@ const {
refresh: search, refresh: search,
onCurrentPageChange: handleCurrentChange, onCurrentPageChange: handleCurrentChange,
onPageSizeChange: handleSizeChange, onPageSizeChange: handleSizeChange,
} = usePageList({ } = usePageList<AccountStatementNote>({
query: (page, pageSize) => query: (page, pageSize) =>
podReconciliationList( podReconciliationList(
{ {
...@@ -1152,7 +1154,7 @@ const getTreeNum = async () => { ...@@ -1152,7 +1154,7 @@ const getTreeNum = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: AccountStatementNote) => { const rowClick = (row: AccountStatementNote | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
...@@ -1362,7 +1364,7 @@ const submitConfirmOrder = async (type: number) => { ...@@ -1362,7 +1364,7 @@ const submitConfirmOrder = async (type: number) => {
search() search()
await getTreeNum() await getTreeNum()
if (singleTableRef.value) { if (singleTableRef.value) {
singleTableRef.value!.setCurrentRow(currentRow.value) singleTableRef.value!.setCurrentRow(currentRow.value ?? undefined)
} }
} }
watch( watch(
......
...@@ -34,7 +34,7 @@ const { ...@@ -34,7 +34,7 @@ const {
refresh: search, refresh: search,
onCurrentPageChange: handleCurrentChange, onCurrentPageChange: handleCurrentChange,
onPageSizeChange: handleSizeChange, onPageSizeChange: handleSizeChange,
} = usePageList({ } = usePageList<AccountStatementNote>({
query: (page, pageSize) => query: (page, pageSize) =>
getPodShipmentDetailsById( getPodShipmentDetailsById(
{ {
......
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElTable } from 'element-plus' import { ElMessage } from 'element-plus'
import type { PropType } from 'vue'
import { ProductDetails } from '@/types/api/billOrder.ts' import { ProductDetails } from '@/types/api/billOrder.ts'
const selection = ref<ProductDetails[]>([]) const selection = ref<ProductDetails[]>([])
defineProps({ defineProps({
list: { list: {
type: Array, type: Array as PropType<ProductDetails[]>,
default: () => [], default: () => [],
}, },
}) })
const handleDetailSelectionChange = (arr:ProductDetails[]) => { const handleDetailSelectionChange = (arr: ProductDetails[]) => {
selection.value = arr selection.value = arr
} }
......
...@@ -1040,7 +1040,7 @@ ...@@ -1040,7 +1040,7 @@
<script setup lang="ts"> <script setup lang="ts">
import DetailView from './detail.vue' import DetailView from './detail.vue'
import EditOrder from './editOrder.vue' import EditOrder from './editOrder.vue'
import { ElMessage, ElTable, ElTree, TableColumnCtx } from 'element-plus' import { ElMessage, ElTree, TableColumnCtx, type TableInstance } from 'element-plus'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import usePageList from '@/utils/hooks/usePageList' import usePageList from '@/utils/hooks/usePageList'
import { useValue } from '@/utils/hooks/useValue' import { useValue } from '@/utils/hooks/useValue'
...@@ -1084,7 +1084,9 @@ interface Tree { ...@@ -1084,7 +1084,9 @@ interface Tree {
children?: Tree[] children?: Tree[]
} }
interface SummaryMethodProps<T = AccountStatementNote> { interface SummaryMethodProps<
T extends Record<PropertyKey, any> = AccountStatementNote,
> {
columns: TableColumnCtx<T>[] columns: TableColumnCtx<T>[]
data: T[] data: T[]
} }
...@@ -1105,7 +1107,7 @@ const orderSelections = ref<OrderDetails[]>([]) ...@@ -1105,7 +1107,7 @@ const orderSelections = ref<OrderDetails[]>([])
const detailList = ref<ProductDetails[]>([]) const detailList = ref<ProductDetails[]>([])
const orderList = ref<OrderDetails[]>([]) const orderList = ref<OrderDetails[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<AccountStatementNote | null>(null) const currentRow = ref<AccountStatementNote | null>(null)
const batchSave = async () => { const batchSave = async () => {
...@@ -1182,7 +1184,7 @@ const { ...@@ -1182,7 +1184,7 @@ const {
refresh: search, refresh: search,
onCurrentPageChange: handleCurrentChange, onCurrentPageChange: handleCurrentChange,
onPageSizeChange: handleSizeChange, onPageSizeChange: handleSizeChange,
} = usePageList({ } = usePageList<AccountStatementNote>({
query: (page, pageSize) => query: (page, pageSize) =>
podUsReconciliationList( podUsReconciliationList(
{ {
...@@ -1254,7 +1256,7 @@ const getTreeNum = async () => { ...@@ -1254,7 +1256,7 @@ const getTreeNum = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: AccountStatementNote) => { const rowClick = (row: AccountStatementNote | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
...@@ -1414,7 +1416,7 @@ const submitConfirmOrder = async (type: number) => { ...@@ -1414,7 +1416,7 @@ const submitConfirmOrder = async (type: number) => {
search() search()
await getTreeNum() await getTreeNum()
if (singleTableRef.value) { if (singleTableRef.value) {
singleTableRef.value!.setCurrentRow(currentRow.value) singleTableRef.value!.setCurrentRow(currentRow.value ?? undefined)
} }
} }
watch( watch(
......
...@@ -34,7 +34,7 @@ const { ...@@ -34,7 +34,7 @@ const {
refresh: search, refresh: search,
onCurrentPageChange: handleCurrentChange, onCurrentPageChange: handleCurrentChange,
onPageSizeChange: handleSizeChange, onPageSizeChange: handleSizeChange,
} = usePageList({ } = usePageList<AccountStatementNote>({
query: (page, pageSize) => query: (page, pageSize) =>
getPodShipmentDetailsById( getPodShipmentDetailsById(
{ {
......
...@@ -894,10 +894,9 @@ ...@@ -894,10 +894,9 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElRadioGroup, ElTree } from 'element-plus' import { ElMessage, ElRadioGroup, ElTree, type TableInstance } from 'element-plus'
import { CirclePlusFilled } from '@element-plus/icons-vue' import { CirclePlusFilled } from '@element-plus/icons-vue'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import { ElTable } from 'element-plus'
import usePageList from '@/utils/hooks/usePageList' import usePageList from '@/utils/hooks/usePageList'
import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil' import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil'
import { useValue } from '@/utils/hooks/useValue' import { useValue } from '@/utils/hooks/useValue'
...@@ -1064,7 +1063,7 @@ const tradingTime = ref<string[]>([]) ...@@ -1064,7 +1063,7 @@ const tradingTime = ref<string[]>([])
const selections = ref<InterWarehousePage[]>([]) const selections = ref<InterWarehousePage[]>([])
const detailList = ref<InterProductList[]>([]) const detailList = ref<InterProductList[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<InterWarehousePage | null>(null) const currentRow = ref<InterWarehousePage | null>(null)
const logList = ref<LogListData[]>([]) const logList = ref<LogListData[]>([])
const rules = { const rules = {
...@@ -1399,7 +1398,7 @@ const getWarehouseList = async () => { ...@@ -1399,7 +1398,7 @@ const getWarehouseList = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: InterWarehousePage) => { const rowClick = (row: InterWarehousePage | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
......
...@@ -629,9 +629,8 @@ ...@@ -629,9 +629,8 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElRadioGroup, ElTree } from 'element-plus' import { ElMessage, ElRadioGroup, ElTree, type TableInstance } from 'element-plus'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import { ElTable } from 'element-plus'
import ReceiptProductDialog from './components/ReceiptProductDialog.vue' import ReceiptProductDialog from './components/ReceiptProductDialog.vue'
import usePageList from '@/utils/hooks/usePageList' import usePageList from '@/utils/hooks/usePageList'
import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil' import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil'
...@@ -807,7 +806,7 @@ const tradingTime = ref<string[]>([]) ...@@ -807,7 +806,7 @@ const tradingTime = ref<string[]>([])
const selections = ref<InterWarehousePage[]>([]) const selections = ref<InterWarehousePage[]>([])
const detailList = ref<InterProductList[]>([]) const detailList = ref<InterProductList[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<InterWarehousePage | null>(null) const currentRow = ref<InterWarehousePage | null>(null)
const logList = ref<LogListData[]>([]) const logList = ref<LogListData[]>([])
const detailLoading = ref(false) const detailLoading = ref(false)
...@@ -1085,7 +1084,7 @@ const getWarehouseList = async () => { ...@@ -1085,7 +1084,7 @@ const getWarehouseList = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: InterWarehousePage) => { const rowClick = (row: InterWarehousePage | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
......
...@@ -998,10 +998,9 @@ ...@@ -998,10 +998,9 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElRadioGroup, ElTree } from 'element-plus' import { ElMessage, ElRadioGroup, ElTree, type TableInstance } from 'element-plus'
import { CirclePlusFilled } from '@element-plus/icons-vue' import { CirclePlusFilled } from '@element-plus/icons-vue'
import splitDiv from '@/components/splitDiv/splitDiv.vue' import splitDiv from '@/components/splitDiv/splitDiv.vue'
import { ElTable } from 'element-plus'
import usePageList from '@/utils/hooks/usePageList' import usePageList from '@/utils/hooks/usePageList'
import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil' import { checkUpdateParams, AnyObject } from '@/utils/hooks/commonUtil'
import { useValue } from '@/utils/hooks/useValue' import { useValue } from '@/utils/hooks/useValue'
...@@ -1174,7 +1173,7 @@ const tradingTime = ref<string[]>([]) ...@@ -1174,7 +1173,7 @@ const tradingTime = ref<string[]>([])
const selections = ref<InterWarehousePage[]>([]) const selections = ref<InterWarehousePage[]>([])
const detailList = ref<InterProductList[]>([]) const detailList = ref<InterProductList[]>([])
const tabsValue = ref<string>('0') const tabsValue = ref<string>('0')
const singleTableRef = ref<InstanceType<typeof ElTable>>() const singleTableRef = ref<TableInstance>()
const currentRow = ref<InterWarehousePage | null>(null) const currentRow = ref<InterWarehousePage | null>(null)
const logList = ref<LogListData[]>([]) const logList = ref<LogListData[]>([])
const rules = { const rules = {
...@@ -1509,7 +1508,7 @@ const getWarehouseList = async () => { ...@@ -1509,7 +1508,7 @@ const getWarehouseList = async () => {
console.error(e) console.error(e)
} }
} }
const rowClick = (row: InterWarehousePage) => { const rowClick = (row: InterWarehousePage | null) => {
if (!row) { if (!row) {
currentRow.value = null currentRow.value = null
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment