修复警告问题
This commit is contained in:
@ -259,7 +259,6 @@ import {getVoucherStatusDesc} from "@/utils/enums/VoucherStatusEnum"
|
|||||||
import {parseTime} from "@/utils/Jinbooks";
|
import {parseTime} from "@/utils/Jinbooks";
|
||||||
import {formatAmount} from "@/utils";
|
import {formatAmount} from "@/utils";
|
||||||
import {reactive} from "vue";
|
import {reactive} from "vue";
|
||||||
import {ElSelect} from "element-plus";
|
|
||||||
import bookStore from "@/store/modules/bookStore";
|
import bookStore from "@/store/modules/bookStore";
|
||||||
import {downloadData} from "@/utils/index"
|
import {downloadData} from "@/utils/index"
|
||||||
|
|
||||||
@ -411,7 +410,7 @@ function handlePreview(row) {
|
|||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
function handleCancel(row) {
|
function handleCancel(row) {
|
||||||
const _id = [row.id] || ids.value.join(",");
|
const _id = [row.id] || ids.value.join(",");
|
||||||
voucherApis.cancelVoucherByIds(_id).then(response => {
|
voucherApis.cancelVoucherByIds(_id).then(res => {
|
||||||
proxy.$modal.msgSuccess("已取消");
|
proxy.$modal.msgSuccess("已取消");
|
||||||
getList()
|
getList()
|
||||||
});
|
});
|
||||||
|
|||||||
@ -26,14 +26,15 @@ import lombok.EqualsAndHashCode;
|
|||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description:
|
* {@code @description:}
|
||||||
* @author: orangeBabu
|
* {@code @author:} orangeBabu
|
||||||
* @time: 2024/11/27 17:37
|
* {@code @time:} 2024/11/27 17:37
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
@Data
|
@Data
|
||||||
public class SocialsProviderPageDto extends PageQuery {/**
|
public class SocialsProviderPageDto extends PageQuery {
|
||||||
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Serial
|
@Serial
|
||||||
|
|||||||
@ -1031,11 +1031,11 @@ public class VoucherServiceImpl extends ServiceImpl<VoucherMapper, Voucher> impl
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Description: 根据科目现金流量默认关系添加凭证项和现金流量关系
|
* {@code @Description:} 根据科目现金流量默认关系添加凭证项和现金流量关系
|
||||||
* @Param: [dto]
|
* {@code @Param:} [dto]
|
||||||
* @return: void
|
* {@code @return:} void
|
||||||
* @Author: xZen
|
* {@code @Author:} xZen
|
||||||
* @Date: 2025/4/23 9:43
|
* {@code @Date:} 2025/4/23 9:43
|
||||||
*/
|
*/
|
||||||
private void setVoucherItemCashFlow(VoucherChangeDto dto) {
|
private void setVoucherItemCashFlow(VoucherChangeDto dto) {
|
||||||
if (dto == null || StringUtils.isEmpty(dto.getId())) {
|
if (dto == null || StringUtils.isEmpty(dto.getId())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user