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