123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513 |
- <template>
- <div class="p-2">
-
- <div class="jeecg-basic-table-form-container">
- <a-form ref="formRef" @keyup.enter.native="reload" :model="queryParam">
- <a-row :gutter="24">
- <a-col :lg="8">
- <a-form-item name="billDate" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="单据日期(bill date)">单据日期(bill date)</span></template>
- <a-range-picker value-format="YYYY-MM-DD" v-model:value="queryParam.billDate" class="query-group-cust" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="inquiryProject" :label-col="{ style: 'width: 200px' }">
- <template #label><span title="询价项目(inquiry project)" AutoComplete="off">询价项目(inquiry project)</span></template>
- <ApiSelect
- :api="ProjectOption"
- showSearch
- v-model:value="queryParam.inquiryProject"
- :filterOption="true"
- resultField="records"
- labelField="code"
- valueField="id"
- :params="{ pageSize: -1 }"
- optionFilterProp="label"
- />
- </a-form-item>
- </a-col>
- <template v-if="toggleSearchStatus">
- <a-col :lg="8">
- <a-form-item name="billCode" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="询价单号(bill code)">询价单号(bill code)</span></template>
- <JInput placeholder="请输入询价单号(bill code)" v-model:value="queryParam.billCode" allow-clear AutoComplete="off" />
- </a-form-item>
- </a-col>
- <a-col :lg="16">
- <a-form-item name="inquiryCustomer" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="询价客户(inquiry customer)">询价客户(inquiry customer)</span></template>
- <JSelect v-model:value="queryParam.inquiryCustomer" :get-option-url="CustomerOption" :showField="showField"></JSelect>
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="shipName" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="船(shipName)">船(shipName)</span></template>
- <JInput placeholder="请输入船(shipName)" v-model:value="queryParam.shipName" allow-clear ></JInput>
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="imo" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="船IMO(imo)">船IMO(imo)</span></template>
- <JInput placeholder="请输入船IMO(imo)" v-model:value="queryParam.imo" allow-clear ></JInput>
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="priority" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="优先级(priority)">优先级(priority)</span></template>
- <JDictSelectTag v-model:value="queryParam.priority" placeholder="请选择" dictCode="priority" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="productionClass" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="产品分类(production class)">产品分类(production class)</span></template>
- <ApiSelect
- :api="ClassOption"
- showSearch
- v-model:value="queryParam.productionClass"
- :filterOption="true"
- resultField="records"
- labelField="name"
- valueField="id"
- :params="{ pageSize: -1 }"
- optionFilterProp="label"
- />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="model" :label-col="{ style: 'width: 200px' }">
- <template #label><span title="机型(model)">机型(model)</span></template>
- <JDictSelectTag v-model:value="queryParam.model" placeholder="请选择" dictCode="model_typer" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="maker" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="厂家(maker)">厂家(maker)</span></template>
- <JInput placeholder="请输入厂家(maker)" v-model:value="queryParam.maker" allow-clear AutoComplete="off" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="saleDepartment" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="销售部门(sale department)">销售部门(sale department)</span></template>
- <JSelectDept v-model:value="queryParam.saleDepartment" :multiple="false" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="status" :label-col="{ style: 'width: 200px' }">
- <template #label><span title="状态(status)">状态(status)</span></template>
- <JDictSelectTag v-model:value="queryParam.status" placeholder="请选择" dictCode="inquiry_status" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="inquiryPlatform" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="询价平台(inquiry platform)">询价平台(inquiry platform)</span></template>
- <JDictSelectTag v-model:value="queryParam.inquiryPlatform" placeholder="请选择" dictCode="inquiry_platform" />
- </a-form-item>
- </a-col>
-
- <a-col :lg="8">
- <a-form-item name="inquiryTeam" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="采购询价组(procurement inquiry team)">采购询价组(procurement inquiry team)</span></template>
- <JSelectDept v-model:value="queryParam.inquiryTeam" :multiple="false" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="salesman" :label-col="{ style: 'width: 200px' }">
- <template #label><span title="业务员(salesman)">业务员(salesman)</span></template>
- <ApiSelect
- :api="SaleManOption"
- showSearch
- v-model:value="queryParam.salesman"
- :filterOption="true"
- resultField="records"
- labelField="realname"
- valueField="username"
- :params="{ pageSize: -1 }"
- optionFilterProp="label"
- />
-
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="submit" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="提交(submit)">提交(submit)</span></template>
- <JDictSelectTag v-model:value="queryParam.submit" placeholder="请选择" dictCode="yes_or_no" />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="customerInquiryNumber" :label-col="{ style: 'width: 280px' }">
- <template #label><span title="客户询价单号(customer inquiry number)">客户询价单号(customer inquiry number)</span></template>
- <JInput
- placeholder="请输入客户询价单号(customer inquiry number)"
- v-model:value="queryParam.customerInquiryNumber"
- allow-clear
- AutoComplete="off"
- />
- </a-form-item>
- </a-col>
- <a-col :lg="8">
- <a-form-item name="otherStatus" :label-col="{ style: 'width: 200px' }">
- <template #label><span title="其他状态(other status)">其他状态(other statu)</span></template>
- <JInput placeholder="其他状态(other status)" v-model:value="queryParam.otherStatus" allow-clear />
- </a-form-item>
- </a-col>
- </template>
- <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="reload">查询</a-button>
- <a-button 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-form>
- </div>
-
- <BasicTable @register="registerTable" :rowSelection="rowSelection" size="small">
-
- <template #tableTitle>
- <a-button type="primary" v-auth="'saleCode:sale_inquiry_form:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增(add)</a-button>
- <a-button type="primary" v-auth="'saleCode:sale_inquiry_form:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls">
- 导出(export)</a-button
- >
- <a-button type="primary" @click="setStatus"> 设置其他状态(set other status)</a-button>
- <a-button type="primary" @click="SubmitBatch" v-auth="'saleCode:sale_inquiry_form:submitBatch'"> 提交(batch submit)</a-button>
- <a-button type="primary" @click="cancelSubmit" v-auth="'saleCode:sale_inquiry_form:returnSubmitBatch'"> 取消提交(cancelSubmit)</a-button>
- <a-dropdown v-if="selectedRowKeys.length > 0">
- <template #overlay>
- <a-menu>
- <a-menu-item key="1" @click="batchHandleDelete" v-auth="'saleCode:sale_inquiry_form:deleteBatch'">
- <Icon icon="ant-design:delete-outlined" />
- 删除(delete)
- </a-menu-item>
- </a-menu>
- </template>
- <a-button v-auth="'saleCode:sale_inquiry_form:deleteBatch'"
- >批量操作
- <Icon icon="mdi:chevron-down" />
- </a-button>
- </a-dropdown>
- </template>
-
- <template #action="{ record }">
- <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
- </template>
-
- <template #bodyCell="{ column, record, index, text }"> </template>
- </BasicTable>
-
- <SaleInquiryFormModal @register="registerModal" @success="handleSuccess" />
- <SetOtherStatus ref="SetOtherStatusRef" @success="handleSuccess" />
- <SelecSaleInquiryModal ref="SelecSaleInquiryModalRef" @copy-product="handleCopyProduct"></SelecSaleInquiryModal>
- </div>
- </template>
- <script lang="ts" name="saleCode-saleInquiryForm" setup>
- import { ref, reactive, computed, unref, onMounted } from 'vue';
- import { BasicTable, useTable, TableAction } from '/@/components/Table';
- import { useListPage } from '/@/hooks/system/useListPage';
- import { useModal } from '/@/components/Modal';
- import SaleInquiryFormModal from './components/SaleInquiryFormModal.vue';
- import { columns, superQuerySchema } from './SaleInquiryForm.data';
- import {
- list,
- deleteOne,
- batchDelete,
- getImportUrl,
- getExportUrl,
- batchSubmit,
- cancelBatchSubmit,
- ProjectOption,
- CustomerOption,
- ClassOption,
- SaleManOption
- } from './SaleInquiryForm.api';
- import { cloneDeep } from 'lodash-es';
- import { defHttp } from '/@/utils/http/axios';
- import { JDictSelectTag, ApiSelect, JInput ,JSelect} from '/@/components/Form';
- import JSelectUser from '/@/components/Form/src/jeecg/components/JSelectUser.vue';
- import JSelectDept from '/@/components/Form/src/jeecg/components/JSelectDept.vue';
- import SelecSaleInquiryModal from './components/SelecSaleInquiryModal.vue';
- import SetOtherStatus from './components/SetOtherStatus.vue';
- import { message } from 'ant-design-vue';
- const formRef = ref();
- const queryParam = reactive<any>({});
- const checkedKeys = ref<Array<string | number>>([]);
-
- const [registerModal, { openModal }] = useModal();
- var showField = ref('currency+name');
- var classOption = ref([]);
- var SetOtherStatusRef = ref();
- var SelecSaleInquiryModalRef = ref();
-
- const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
- tableProps: {
- title: '销售询价单',
- api: list,
- columns,
- canResize: false,
- useSearchForm: false,
- actionColumn: {
- width: 300,
- fixed: 'right',
- },
- scroll: {
- x: '4000px',
- y:'calc(100vh - 400px)',
- },
- beforeFetch: async (params) => {
- let rangerQuery = await setRangeQuery();
- return Object.assign(params, rangerQuery);
- },
- },
- exportConfig: {
- name: '销售询价单',
- url: getExportUrl,
- params: queryParam,
- },
- importConfig: {
- url: getImportUrl,
- success: handleSuccess,
- },
- });
- const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
-
- const superQueryConfig = reactive(superQuerySchema);
-
- function handleSuperQuery(params) {
- Object.keys(params).map((k) => {
- queryParam[k] = params[k];
- });
- reload();
- }
-
- onMounted(() => {
- getOptiom();
- });
-
- function handleAdd() {
- openModal(true, {
- isUpdate: false,
- showFooter: true,
- });
- }
-
- function handleEdit(record: Recordable) {
- openModal(true, {
- record,
- isUpdate: true,
- showFooter: true,
- });
- }
-
- function getOptiom() {
- defHttp
- .get({ url: 'baseCode/baseProductClass/list' }, { isTransformResponse: false })
- .then((res) => {
- if (res.success) {
- classOption.value = [];
- res.result.records.forEach((element) => {
- var obj = {
- label: element.name ? element.name : '无名称请维护',
- value: element.id ? element.id : '',
- };
- classOption.value.push(obj);
- });
- }
- })
- .finally(() => {
-
- });
- }
-
- 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);
- }
-
- function handleSuccess() {
- (selectedRowKeys.value = []) && reload();
- }
-
- function getTableAction(record) {
- return [
- {
- label: '编辑(edit)',
- onClick: handleEdit.bind(null, record),
- auth: 'saleCode:sale_inquiry_form:edit',
- ifShow: record.submit == '0',
-
- },
- {
- label: '详情(detail)',
- onClick: handleDetail.bind(null, record),
- ifShow: record.submit == '1',
-
- },
- {
- label: '复制(copy)',
- onClick: handleCopy.bind(null, record),
-
- },
- ];
- }
-
- function getDropDownAction(record) {
- return [
- {
- label: '详情(detail)',
- onClick: handleDetail.bind(null, record),
- ifShow: record.submit == '0',
-
- },
- {
- label: '删除(delete)',
- popConfirm: {
- title: '是否确认删除',
- confirm: handleDelete.bind(null, record),
- placement: 'topLeft',
- },
- auth: 'saleCode:sale_inquiry_form:delete',
- ifShow: record.submit == '0',
-
- },
- ];
- }
- function setStatus() {
- if (selectedRowKeys.value.length == 0) {
- message.warning('请选择数据');
- } else {
- var ids = selectedRowKeys.value.join(',');
- SetOtherStatusRef.value.getTable(ids);
- }
- }
- function SubmitBatch() {
- if (selectedRowKeys.value.length == 0) {
- message.warning('请选择数据');
- } else {
- var ids = selectedRowKeys.value.join(',');
- batchSubmit({ ids: ids }, handleSuccess);
- }
- }
- function cancelSubmit() {
- if (selectedRowKeys.value.length == 0) {
- message.warning('请选择数据');
- } else {
- var ids = selectedRowKeys.value.join(',');
- cancelBatchSubmit({ ids: ids }, handleSuccess);
- }
- }
-
- function handleCopy(record: Recordable) {
- SelecSaleInquiryModalRef.value.getTable(record);
- }
- function handleCopyProduct(data, mainId) {
- openModal(true, {
- data,
- mainId,
- isUpdate: false,
- showFooter: true,
- isCopy: true,
- });
- }
-
- const toggleSearchStatus = ref<boolean>(false);
-
- function searchReset() {
- formRef.value.resetFields();
- selectedRowKeys.value = [];
-
- reload();
- }
- let rangeField = 'billDate,';
-
- async function setRangeQuery() {
- let queryParamClone = cloneDeep(queryParam);
- if (rangeField) {
- let fieldsValue = rangeField.split(',');
- fieldsValue.forEach((item) => {
- if (queryParamClone[item]) {
- let range = queryParamClone[item];
- queryParamClone[item + '_begin'] = range[0];
- queryParamClone[item + '_end'] = range[1];
- delete queryParamClone[item];
- } else {
- queryParamClone[item + '_begin'] = '';
- queryParamClone[item + '_end'] = '';
- }
- });
- }
- return queryParamClone;
- }
- </script>
- <style lang="less" scoped>
- .jeecg-basic-table-form-container {
- padding: 0;
- .table-page-search-submitButtons {
- display: block;
- margin-bottom: 8px;
- 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: 8px;
- height: 32px;
- }
- :deep(.ant-picker),
- :deep(.ant-input-number) {
- width: 100%;
- }
- }
- </style>
|