2025-11-06 17:55:06 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="p-2">
|
|
|
|
|
<!--查询区域-->
|
|
|
|
|
<div class="jeecg-basic-table-form-container">
|
|
|
|
|
<a-form ref="formRef" @keyup.enter.native="reload" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
2025-11-09 19:36:23 +08:00
|
|
|
<a-row :gutter="24">
|
|
|
|
|
<a-col :lg="6">
|
|
|
|
|
<a-form-item name="no">
|
|
|
|
|
<template #label><span title="任务号">任务号</span></template>
|
|
|
|
|
<JInput v-model:value="queryParam.no" :placeholder="'请输入任务号'" :type="JInputTypeEnum.JINPUT_RIGHT_LIKE" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
|
|
|
|
<a-col :lg="6">
|
|
|
|
|
<a-form-item name="orderType">
|
|
|
|
|
<template #label><span title="单据类型">单据类型</span></template>
|
|
|
|
|
<JDictSelectTag v-model:value="queryParam.orderType" placeholder="请选择" dictCode="asn_order_type" allowClear />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2025-12-19 18:06:39 +08:00
|
|
|
<a-col :lg="6">
|
|
|
|
|
<a-form-item name="orderDate">
|
|
|
|
|
<template #label><span title="订单日期">订单日期</span></template>
|
|
|
|
|
<JRangeDate v-model:value="queryParam.orderDate" />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>
|
2025-11-09 19:36:23 +08:00
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
|
|
|
<a-col :lg="6">
|
|
|
|
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
|
|
|
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
|
|
|
|
|
<a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
|
|
|
|
|
{{ toggleSearchStatus ? '收起' : '展开' }}
|
|
|
|
|
<Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
|
|
|
|
|
</a>
|
|
|
|
|
</a-col>
|
|
|
|
|
</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
<a-row :gutter="24">
|
2025-12-23 15:04:41 +08:00
|
|
|
<!-- <a-col :lg="6">
|
|
|
|
|
<a-form-item name="status">
|
|
|
|
|
<template #label><span title="状态">状态</span></template>
|
|
|
|
|
<JDictSelectTag v-model:value="queryParam.status" placeholder="请选择" dictCode="asn_status" allowClear />
|
|
|
|
|
</a-form-item>
|
|
|
|
|
</a-col>-->
|
2025-11-09 19:36:23 +08:00
|
|
|
</a-row>
|
2025-11-06 17:55:06 +08:00
|
|
|
</a-form>
|
|
|
|
|
</div>
|
|
|
|
|
<!--引用表格-->
|
|
|
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
|
|
|
<!--插槽:table标题-->
|
|
|
|
|
<template #tableTitle>
|
|
|
|
|
<a-button type="primary" v-auth="'receive:data_asn:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增 </a-button>
|
2025-12-23 15:04:41 +08:00
|
|
|
<a-button type="success" v-auth="'conveyorLine:data_asn:scanTray'" @click="scanTray" preIcon="ant-design:barcode-outlined">
|
|
|
|
|
托盘扫描
|
|
|
|
|
</a-button>
|
|
|
|
|
<a-button
|
|
|
|
|
type="warning"
|
|
|
|
|
v-auth="'receive:data_asn:receiveAsn'"
|
|
|
|
|
:loading="receive_loading"
|
|
|
|
|
:disabled="selectedRowKeys.length != 1"
|
|
|
|
|
@click="handleReceive"
|
|
|
|
|
preIcon="ant-design:edit-outlined"
|
|
|
|
|
>
|
|
|
|
|
整单入库
|
|
|
|
|
</a-button>
|
|
|
|
|
<a-button
|
|
|
|
|
type="error"
|
|
|
|
|
v-auth="'receive:data_asn:receiveBack'"
|
|
|
|
|
:loading="receiveBack_loading"
|
|
|
|
|
:disabled="selectedRowKeys.length != 1"
|
|
|
|
|
@click="handleReceiveBack"
|
|
|
|
|
preIcon="ant-design:send-outlined"
|
|
|
|
|
>
|
|
|
|
|
入库回传
|
|
|
|
|
</a-button>
|
2025-12-12 21:16:57 +08:00
|
|
|
|
2025-11-06 17:55:06 +08:00
|
|
|
<a-button type="primary" v-auth="'receive:data_asn:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出 </a-button>
|
2025-11-09 19:36:23 +08:00
|
|
|
<j-upload-button
|
|
|
|
|
type="primary"
|
|
|
|
|
v-auth="'receive:data_asn:importExcel'"
|
|
|
|
|
v-show="false"
|
|
|
|
|
preIcon="ant-design:import-outlined"
|
|
|
|
|
@click="onImportXls"
|
2025-11-06 17:55:06 +08:00
|
|
|
>导入
|
|
|
|
|
</j-upload-button>
|
|
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
|
|
<template #overlay>
|
|
|
|
|
<a-menu>
|
|
|
|
|
<a-menu-item key="1" @click="batchHandleDelete">
|
|
|
|
|
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
|
|
|
删除
|
|
|
|
|
</a-menu-item>
|
|
|
|
|
</a-menu>
|
|
|
|
|
</template>
|
|
|
|
|
<a-button v-auth="'receive:data_asn:deleteBatch'"
|
|
|
|
|
>批量操作
|
|
|
|
|
<Icon icon="mdi:chevron-down"></Icon>
|
|
|
|
|
</a-button>
|
|
|
|
|
</a-dropdown>
|
|
|
|
|
</template>
|
|
|
|
|
<!--操作栏-->
|
|
|
|
|
<template #action="{ record }">
|
|
|
|
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
|
|
|
|
|
</template>
|
|
|
|
|
<!--字段回显插槽-->
|
2025-11-09 19:36:23 +08:00
|
|
|
<template v-slot:bodyCell="{ column, record, index, text }"></template>
|
2025-11-06 17:55:06 +08:00
|
|
|
</BasicTable>
|
|
|
|
|
<!-- 表单区域 -->
|
|
|
|
|
<AsnModal @register="registerModal" @success="handleSuccess"></AsnModal>
|
2025-12-12 21:16:57 +08:00
|
|
|
<ScanTrayModal ref="registerScanTrayModal" @success="handleSuccess"></ScanTrayModal>
|
2025-11-06 17:55:06 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2025-11-16 20:23:45 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import { ref, reactive } from 'vue';
|
|
|
|
|
import { BasicTable, TableAction } from '/@/components/Table';
|
2025-11-06 17:55:06 +08:00
|
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
|
|
|
import { useModal } from '/@/components/Modal';
|
|
|
|
|
import AsnModal from './components/AsnModal.vue';
|
|
|
|
|
import { columns } from './Asn.data';
|
2025-12-23 15:04:41 +08:00
|
|
|
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl, receiveAsn, receiveBack } from './Asn.api';
|
2025-11-06 17:55:06 +08:00
|
|
|
import { getDateByPicker } from '/@/utils';
|
2025-11-09 19:36:23 +08:00
|
|
|
import { JInputTypeEnum } from '@/enums/cpteEnum';
|
2025-11-16 20:23:45 +08:00
|
|
|
import { JInput, JDictSelectTag } from '@/components/Form';
|
2025-11-09 19:36:23 +08:00
|
|
|
import JRangeDate from '@/components/Form/src/jeecg/components/JRangeDate.vue';
|
2025-12-12 21:16:57 +08:00
|
|
|
import ScanTrayModal from '@/views/receive/asn/components/scanTray/ScanTrayModal.vue';
|
2025-12-23 15:04:41 +08:00
|
|
|
import { useMessage } from '@/hooks/web/useMessage';
|
2025-11-06 17:55:06 +08:00
|
|
|
|
|
|
|
|
const fieldPickers = reactive({});
|
|
|
|
|
const formRef = ref();
|
|
|
|
|
const queryParam = reactive<any>({});
|
2025-12-23 15:04:41 +08:00
|
|
|
const { createMessage } = useMessage();
|
2025-11-06 17:55:06 +08:00
|
|
|
//注册model
|
|
|
|
|
const [registerModal, { openModal }] = useModal();
|
|
|
|
|
//注册table数据
|
2025-12-12 21:16:57 +08:00
|
|
|
const { tableContext, onExportXls, onImportXls } = useListPage({
|
2025-11-06 17:55:06 +08:00
|
|
|
tableProps: {
|
|
|
|
|
title: '入库单',
|
|
|
|
|
api: list,
|
|
|
|
|
columns,
|
|
|
|
|
canResize: true,
|
|
|
|
|
useSearchForm: false,
|
|
|
|
|
actionColumn: {
|
|
|
|
|
width: 120,
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
},
|
|
|
|
|
beforeFetch: async (params) => {
|
2025-11-09 19:36:23 +08:00
|
|
|
// 创建新的查询参数对象,避免修改原始对象
|
|
|
|
|
const newQueryParam = { ...queryParam };
|
|
|
|
|
|
|
|
|
|
// 处理日期范围
|
|
|
|
|
if (newQueryParam.orderDate) {
|
|
|
|
|
try {
|
|
|
|
|
const [begin, end] = newQueryParam.orderDate.split(',');
|
|
|
|
|
if (begin !== undefined) newQueryParam.orderDate_begin = begin;
|
|
|
|
|
if (end !== undefined) newQueryParam.orderDate_end = end;
|
|
|
|
|
delete newQueryParam.orderDate;
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('日期范围处理错误:', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-06 17:55:06 +08:00
|
|
|
for (let key in fieldPickers) {
|
2025-11-09 19:36:23 +08:00
|
|
|
if (newQueryParam[key] && fieldPickers[key]) {
|
|
|
|
|
newQueryParam[key] = getDateByPicker(newQueryParam[key], fieldPickers[key]);
|
2025-11-06 17:55:06 +08:00
|
|
|
}
|
|
|
|
|
}
|
2025-11-09 19:36:23 +08:00
|
|
|
return Object.assign(params, newQueryParam);
|
2025-11-06 17:55:06 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
exportConfig: {
|
|
|
|
|
name: '入库单',
|
|
|
|
|
url: getExportUrl,
|
|
|
|
|
params: queryParam,
|
|
|
|
|
},
|
|
|
|
|
importConfig: {
|
|
|
|
|
url: getImportUrl,
|
|
|
|
|
success: handleSuccess,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2025-12-23 15:04:41 +08:00
|
|
|
const [registerTable, { reload }, { rowSelection, selectedRowKeys, selectedRows }] = tableContext;
|
2025-11-06 17:55:06 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增事件
|
|
|
|
|
*/
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
openModal(true, {
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
showFooter: true,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 编辑事件
|
|
|
|
|
*/
|
|
|
|
|
function handleEdit(record: Recordable) {
|
2025-11-09 19:36:23 +08:00
|
|
|
let showFooter = true;
|
|
|
|
|
if (record.status > 1) {
|
|
|
|
|
showFooter = false;
|
|
|
|
|
}
|
2025-11-06 17:55:06 +08:00
|
|
|
openModal(true, {
|
|
|
|
|
record,
|
|
|
|
|
isUpdate: true,
|
2025-11-09 19:36:23 +08:00
|
|
|
showFooter: showFooter,
|
2025-11-06 17:55:06 +08:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 详情
|
|
|
|
|
*/
|
|
|
|
|
function handleDetail(record: Recordable) {
|
|
|
|
|
openModal(true, {
|
|
|
|
|
record,
|
|
|
|
|
isUpdate: true,
|
|
|
|
|
showFooter: false,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除事件
|
|
|
|
|
*/
|
|
|
|
|
async function handleDelete(record) {
|
|
|
|
|
await deleteOne({ id: record.id }, handleSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 批量删除事件
|
|
|
|
|
*/
|
|
|
|
|
async function batchHandleDelete() {
|
|
|
|
|
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-12 21:16:57 +08:00
|
|
|
/**
|
|
|
|
|
* 托盘扫描
|
|
|
|
|
*/
|
|
|
|
|
const registerScanTrayModal = ref();
|
|
|
|
|
|
|
|
|
|
function scanTray() {
|
|
|
|
|
registerScanTrayModal.value.disableSubmit = false;
|
|
|
|
|
registerScanTrayModal.value.add();
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-23 15:04:41 +08:00
|
|
|
/**
|
|
|
|
|
* 收货事件
|
|
|
|
|
*/
|
|
|
|
|
const receive_loading = ref(false);
|
|
|
|
|
|
|
|
|
|
async function handleReceive() {
|
|
|
|
|
// 选中的数据中状态有6、 返回true,否则返回false
|
|
|
|
|
const validStatuses = [6];
|
|
|
|
|
const allValidStatus = selectedRows.value.every((row: any) => validStatuses.includes(row.status));
|
|
|
|
|
if (!allValidStatus) {
|
|
|
|
|
return createMessage.error('【已扫描】状态的入库单才允许收货');
|
|
|
|
|
}
|
|
|
|
|
if (receive_loading.value) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 设置加载状态,防止重复提交
|
|
|
|
|
receive_loading.value = true;
|
|
|
|
|
try {
|
|
|
|
|
await receiveAsn(selectedRowKeys.value, handleSuccess);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error('收货失败:', e);
|
|
|
|
|
handleSuccess();
|
|
|
|
|
} finally {
|
|
|
|
|
// 重置加载状态
|
|
|
|
|
receive_loading.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 回传事件
|
|
|
|
|
*/
|
|
|
|
|
const receiveBack_loading = ref(false);
|
|
|
|
|
|
|
|
|
|
async function handleReceiveBack() {
|
|
|
|
|
// 选中的数据中状态有2、3 返回true,否则返回false
|
|
|
|
|
const validStatuses = [2, 3];
|
|
|
|
|
const allValidStatus = selectedRows.value.every((row: any) => validStatuses.includes(row.status));
|
|
|
|
|
if (!allValidStatus) {
|
|
|
|
|
return createMessage.error('【部分收货、收货完成】状态的入库单才允许回传');
|
|
|
|
|
}
|
|
|
|
|
if (receiveBack_loading.value) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 设置加载状态,防止重复提交
|
|
|
|
|
receiveBack_loading.value = true;
|
|
|
|
|
try {
|
|
|
|
|
await receiveBack(selectedRowKeys.value, handleSuccess);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.error('回传失败:', e);
|
|
|
|
|
handleSuccess();
|
|
|
|
|
} finally {
|
|
|
|
|
// 重置加载状态
|
|
|
|
|
receiveBack_loading.value = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-06 17:55:06 +08:00
|
|
|
/**
|
|
|
|
|
* 成功回调
|
|
|
|
|
*/
|
|
|
|
|
function handleSuccess() {
|
|
|
|
|
(selectedRowKeys.value = []) && reload();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 操作栏
|
|
|
|
|
*/
|
|
|
|
|
function getTableAction(record) {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
label: '编辑',
|
|
|
|
|
onClick: handleEdit.bind(null, record),
|
|
|
|
|
auth: 'receive:data_asn:edit',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 下拉操作栏
|
|
|
|
|
*/
|
|
|
|
|
function getDropDownAction(record) {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
label: '详情',
|
|
|
|
|
onClick: handleDetail.bind(null, record),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '删除',
|
|
|
|
|
popConfirm: {
|
|
|
|
|
title: '是否确认删除',
|
|
|
|
|
confirm: handleDelete.bind(null, record),
|
|
|
|
|
placement: 'topLeft',
|
|
|
|
|
},
|
|
|
|
|
auth: 'receive:data_asn:delete',
|
2025-11-16 20:23:45 +08:00
|
|
|
disabled: record.status != 1,
|
2025-11-06 17:55:06 +08:00
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ----------------------以下为原生查询需要添加的-------------------------- */
|
|
|
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
|
|
|
const labelCol = reactive({
|
|
|
|
|
xs: 24,
|
|
|
|
|
sm: 4,
|
|
|
|
|
xl: 6,
|
|
|
|
|
xxl: 4,
|
|
|
|
|
});
|
|
|
|
|
const wrapperCol = reactive({
|
|
|
|
|
xs: 24,
|
|
|
|
|
sm: 20,
|
|
|
|
|
});
|
|
|
|
|
|
2025-11-09 19:36:23 +08:00
|
|
|
/**
|
|
|
|
|
* 查询
|
|
|
|
|
*/
|
|
|
|
|
function searchQuery() {
|
|
|
|
|
reload();
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-06 17:55:06 +08:00
|
|
|
/**
|
|
|
|
|
* 重置
|
|
|
|
|
*/
|
|
|
|
|
function searchReset() {
|
|
|
|
|
formRef.value.resetFields();
|
|
|
|
|
selectedRowKeys.value = [];
|
|
|
|
|
//刷新数据
|
|
|
|
|
reload();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.jeecg-basic-table-form-container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
.table-page-search-submitButtons {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-group-cust {
|
|
|
|
|
min-width: 100px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-group-split-cust {
|
|
|
|
|
width: 30px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-form-item:not(.ant-form-item-with-help) {
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.ant-picker),
|
|
|
|
|
:deep(.ant-input-number) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|