| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- <template>
- <div>
- <a-row>
- <a-col flex="15%" class="tree_box">
- <a-tree
- v-model:expandedKeys="expandedKeys" v-model:selectedKeys="selectedKeys"
- :field-names="{ title: 'text', key: 'id' }" :tree-data="treeDatas" :show-line="true"
- @select="categoriesSelected"
- />
- </a-col>
- <a-col flex="auto" class="table_box" style="width: 0;">
- <div class="operation_box">
- <a-input-search
- v-model:value="searchParams.name" size="small" style="width: 300px;margin:0 0 8px 0;"
- enter-button @search="searchChange(true)"
- />
- <a-pagination
- v-model:current="current" size="small" :total="infoTotal" show-quick-jumper
- :show-size-changer="true" :page-size-options="pageSizeOptions" :default-page-size="20"
- @change="getPageParams" @show-size-change="showSizeChange"
- />
- </div>
- <div class="operation_box">
- <a-space>
- <a-button size="small" :icon="h(FieldTimeOutlined)" @click="operation('设置折旧年限')">
- 设置折旧年限
- </a-button>
- <a-button size="small" :icon="h(MoneyCollectOutlined)" @click="setDepreciation">
- 设置计提折旧
- </a-button>
- <a-button size="small" :icon="h(PayCircleOutlined)" @click="cancelDepreciation">
- 设置不提折旧
- </a-button>
- <a-button size="small" :icon="h(ProfileOutlined)" @click="operation('设置折旧方法')">
- 设置折旧方法
- </a-button>
- <a-button size="small" :icon="h(PercentageOutlined)" @click="operation('设置残值率')">
- 设置残值率
- </a-button>
- <a-button size="small" :icon="h(FileProtectOutlined)" @click="operation('设置累计折旧')">
- 设置累计折旧
- </a-button>
- </a-space>
- <a-space>
- <!-- <a-button size="small" :icon="h(DownloadOutlined)">导出</a-button> -->
- </a-space>
- </div>
- <CommonTable
- ref="commonTable" :is-select="true" :selected-keys="selectedIds" :have-page="false"
- :columns="columns" :data-source="dataSource" :top-right="true" :is-loading="isLoading"
- @get-selected="getSelectColumn"
- >
- <template #bodyCell="{ column, record }">
- <template v-if="column.dataIndex === 'reservedRate'">
- <span v-if="record.reservedRate">{{ record.reservedRate }}%</span>
- <span v-else />
- </template>
- </template>
- </CommonTable>
- </a-col>
- </a-row>
- <div class="footer_box">
- <p>您所选的资产共计:<span style="color: red;">{{ selectedIds.length }}</span> 条</p>
- </div>
- </div>
- <a-modal v-model:open="visible" width="26%" :title="modalTitle" @ok="setDepreciationInfo">
- <a-form-item v-if="modalTitle === '设置折旧年限'" label="请输入" style="margin-top: 24px;">
- <a-input-number v-model:value="yearLimit" :controls="false" addon-after="月" style="width: 90%;" />
- </a-form-item>
- <a-form-item v-if="modalTitle === '设置折旧方法'" label="请选择" style="margin-top: 24px;">
- <a-select
- v-model:value="depreciationMethod" style="width: 90%" :options="depreciationMethods"
- :field-names="{ label: 'text', value: 'id' }"
- />
- </a-form-item>
- <a-form-item v-if="modalTitle === '设置累计折旧'" label="请选择" style="margin-top: 24px;">
- <a-select
- v-model:value="subject" style="width: 90%" allow-clear option-filter-prop="label" show-search
- :options="subjects"
- />
- </a-form-item>
- <a-form-item v-if="modalTitle === '设置残值率'" label="请输入" style="margin-top: 24px;">
- <a-input-number
- v-model:value="reservedRate" :controls="false" :step="0.01" :min="0" :max="100"
- :formatter="value => `${value}%`" :parser="value => value.replace('%', '')" style="width: 90%;"
- />
- </a-form-item>
- </a-modal>
- </template>
- <script setup>
- import { ref, reactive, onMounted, h } from 'vue';
- import Common from '../../common/Common';
- import CommonTable from '../../common/CommonTable.vue';
- import { FieldTimeOutlined, MoneyCollectOutlined, PayCircleOutlined, DownloadOutlined, ProfileOutlined, PercentageOutlined, FileProtectOutlined } from '@ant-design/icons-vue';
- import {
- queryCategoriesApi, queryByNameApi, updateYearApi, updateExtractApi, getMethodsApi, updateMethodApi,
- updateReservedRateApi, updateSubjectApi,
- } from '../../api/assetPeriodDepreciate';
- import { infoColumns, debounce } from './util.js';
- import { message, Modal } from 'ant-design-vue';
- import { SqlApi } from 'pc-component-v3';
- // 表格配置
- const commonTable = ref();
- const infoTotal = ref(0);
- const dataSource = ref([]);
- const columns = ref(infoColumns);
- const selectedIds = ref([]); // 用作表格选择的唯一key值
- const current = ref(1);
- // 树形配置
- const expandedKeys = ref([]);
- const selectedKeys = ref([]);
- const treeDatas = ref([]);
- // 折旧方法
- const depreciationMethod = ref('');
- const depreciationMethods = ref([]);
- const visible = ref(false);
- const modalTitle = ref('');
- const yearLimit = ref(null); // 折旧年限
- const reservedRate = ref(null); // 残值率
- const subject = ref(undefined); // 会计科目
- const subjects = ref([]); // 会计科目
- const isLoading = ref(false);
- const isAllSearch = ref(true);
- const pageSizeOptions = ref(['20', '50', '100', '200', '500']);
- // 查询参数
- const searchParams = reactive({
- id: null,
- name: '',
- range: {
- start: 0,
- length: 20,
- },
- });
- onMounted(() => {
- getSubjects();
- });
- const clearDatas = () => {
- modalTitle.value = '';
- yearLimit.value = null;
- reservedRate.value = null;
- depreciationMethod.value = null;
- visible.value = false;
- selectedIds.value = [];
- commonTable.value.clear();
- };
- // 打开模态框
- const operation = title => {
- if (!selectedIds.value || selectedIds.value.length === 0) {
- message.warning('请您至少选择一条分类数据。');
- return;
- }
- modalTitle.value = title;
- visible.value = true;
- };
- // 设置折旧年限/折旧方法/残值率
- const setDepreciationInfo = () => {
- if (modalTitle.value === '设置折旧年限') {
- const params = {
- usedYearLimit: yearLimit.value,
- assetCategoryIds: selectedIds.value,
- };
- setYearLimit(params);
- } else if (modalTitle.value === '设置折旧方法') {
- const params = {
- depreciationMethodId: depreciationMethod.value,
- assetCategoryIds: selectedIds.value,
- };
- setMethod(params);
- } else if (modalTitle.value === '设置累计折旧') {
- const params = {
- accountSubjectId: subject.value,
- assetCategoryIds: selectedIds.value,
- };
- updateSubject(params);
- } else {
- const params = {
- reservedRate: reservedRate.value,
- assetCategoryIds: selectedIds.value,
- };
- setReservedRate(params);
- }
- };
- // 设置折旧年限
- const setYearLimit = params => {
- updateYearApi(params).then(
- success => {
- if (success.errorCode === 0) {
- clearDatas();
- if (!searchParams.id) {
- searchChange(true);
- } else {
- searchChange(false);
- }
- message.success('设置折旧年限成功。');
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 设置折旧方法
- const setMethod = params => {
- updateMethodApi(params).then(
- success => {
- if (success.errorCode === 0) {
- clearDatas();
- if (!searchParams.id) {
- searchChange(true);
- } else {
- searchChange(false);
- }
- message.success('设置折旧方法成功。');
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 设置残值率
- const setReservedRate = params => {
- updateReservedRateApi(params).then(
- success => {
- if (success.errorCode === 0) {
- clearDatas();
- if (!searchParams.id) {
- searchChange(true);
- } else {
- searchChange(false);
- }
- message.success('设置残值率成功。');
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 设置累计折旧科目
- const updateSubject = params => {
- updateSubjectApi(params).then(
- success => {
- if (success.errorCode === 0) {
- clearDatas();
- if (!searchParams.id) {
- searchChange(true);
- } else {
- searchChange(false);
- }
- message.success(success.errorMessage);
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 设置计提折旧
- const setDepreciation = () => {
- if (!selectedIds.value || selectedIds.value.length === 0) {
- message.warning('请您至少选择一条分类数据。');
- return;
- }
- Modal.confirm({
- title: '提示',
- content: h('div', {}, '您确定要将所选数据设置为计提折旧吗?'),
- onOk() {
- updateExtractDepreciation(true);
- },
- });
- };
- // 设置不提折旧
- const cancelDepreciation = () => {
- if (!selectedIds.value || selectedIds.value.length === 0) {
- message.warning('请您至少选择一条分类数据。');
- return;
- }
- Modal.confirm({
- title: '提示',
- content: h('div', {}, '您确定要将所选数据设置为不提折旧吗?'),
- onOk() {
- updateExtractDepreciation(false);
- },
- });
- };
- // 根据分类ID查询折旧信息
- const categoriesSelected = key => {
- searchParams.id = key[0];
- searchChange(false);
- };
- // 获取的分页参数并查询
- const getPageParams = (start, length) => {
- current.value = start;
- searchParams.range.start = (start - 1) * length;
- searchParams.range.length = length;
- getInfo();
- };
- // 分页每页条数变化查询
- const showSizeChange = (_, size) => {
- setTimeout(() => {
- current.value = 1;
- searchParams.range.start = 0;
- searchParams.range.length = size;
- getInfo();
- });
- };
- // 查询回到第一页
- const searchChange = debounce(isAll => {
- if (isAll[0]) {
- isAllSearch.value = true;
- } else {
- isAllSearch.value = false;
- }
- getPageParams(1, searchParams.range.length);
- }, 500);
- // 获取所选项的数据
- const getSelectColumn = rows => {
- selectedIds.value = rows.selectedRowKeys;
- };
- // 获取资产分类
- const getCategories = () => {
- queryCategoriesApi().then(
- success => {
- if (success && success.length) {
- treeDatas.value = success;
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 根据分类名字查询信息
- const getInfo = () => {
- if (isAllSearch.value) {
- searchParams.id = null;
- } else {
- searchParams.name = '';
- }
- isLoading.value = true;
- const params = JSON.parse(JSON.stringify(searchParams));
- queryByNameApi(params).then(
- success => {
- if (success.dataList) {
- dataSource.value = success.dataList;
- } else {
- dataSource.value = [];
- }
- infoTotal.value = success.totalSize;
- isLoading.value = false;
- },
- error => {
- isLoading.value = false;
- Common.processException(error);
- },
- );
- };
- // 查询所有资产折旧方法
- const getMethods = () => {
- getMethodsApi().then(
- success => {
- if (success.errorCode === 0) {
- if (success.datas && success.datas.length) {
- depreciationMethods.value = success.datas;
- }
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 设置计提折旧或不提折旧
- const updateExtractDepreciation = flag => {
- const params = {
- isExtractDepreciation: flag,
- assetCategoryIds: selectedIds.value,
- };
- updateExtractApi(params).then(
- success => {
- if (success.errorCode === 0) {
- if (flag) {
- message.success('设置计提折旧成功。');
- } else {
- message.success('设置不提折旧成功。');
- }
- clearDatas();
- if (!searchParams.id) {
- searchChange(true);
- } else {
- searchChange(false);
- }
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- // 获取所有累计折旧会计科目
- const getSubjects = () => {
- SqlApi.execute('20241120_175411').then(
- success => {
- if (success.errorCode == 0) {
- if (success.results) {
- success.results.forEach(item => {
- item.label = `${item.name}-${item.no}`;
- item.value = item.id;
- });
- subjects.value = success.results;
- subject.value = success.results[0].id;
- }
- } else {
- message.warning(success.errorMessage);
- }
- },
- error => {
- Common.processException(error);
- },
- );
- };
- getInfo();
- getMethods();
- getCategories();
- </script>
- <style scoped>
- .tree_box {
- height: 86vh;
- overflow: auto;
- border: 1px solid #dddddd;
- margin-right: 4px;
- border-bottom: none;
- }
- .table_box {
- padding: 6px;
- border: 1px solid #dddddd;
- border-bottom: none;
- }
- .operation_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .ant-btn>span {
- color: #267fcf;
- }
- .footer_box {
- background-color: #fafafa;
- }
- p {
- margin: 0 !important;
- padding: 0 !important;
- }
- :deep(.ant-form-item-label > label) {
- font-size: 14px !important;
- font-weight: 500 !important;
- }
- </style>
|