清除没用的import

This commit is contained in:
XiangLingFeng 2025-12-11 13:12:29 +08:00
parent 66caff6a37
commit d837302e62
5 changed files with 1 additions and 11 deletions

View File

@ -4,7 +4,6 @@ import kd.bos.dataentity.entity.DynamicObject;
import kd.bos.dataentity.entity.DynamicObjectCollection; import kd.bos.dataentity.entity.DynamicObjectCollection;
import kd.bos.form.FormShowParameter; import kd.bos.form.FormShowParameter;
import kd.bos.form.events.SetFilterEvent; import kd.bos.form.events.SetFilterEvent;
import kd.bos.form.plugin.AbstractFormPlugin;
import kd.bos.list.plugin.AbstractListPlugin; import kd.bos.list.plugin.AbstractListPlugin;
import kd.bos.orm.query.QCP; import kd.bos.orm.query.QCP;
import kd.bos.orm.query.QFilter; import kd.bos.orm.query.QFilter;

View File

@ -2,9 +2,6 @@ package kdsz.zyf25.tmc.cfm.plugin.form.cdm;
import kd.bos.bill.AbstractBillPlugIn; import kd.bos.bill.AbstractBillPlugIn;
import kd.bos.dataentity.entity.DynamicObject; import kd.bos.dataentity.entity.DynamicObject;
import kd.bos.dataentity.entity.DynamicObjectCollection;
import kd.bos.entity.datamodel.events.ChangeData;
import kd.bos.entity.datamodel.events.PropertyChangedArgs;
import kd.bos.form.FormShowParameter; import kd.bos.form.FormShowParameter;
import kd.bos.form.field.BasedataEdit; import kd.bos.form.field.BasedataEdit;
import kd.bos.form.field.events.BeforeF7SelectEvent; import kd.bos.form.field.events.BeforeF7SelectEvent;
@ -16,11 +13,7 @@ import kd.bos.servicehelper.BusinessDataServiceHelper;
import kd.sdk.plugin.Plugin; import kd.sdk.plugin.Plugin;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Collection;
import java.util.EventObject; import java.util.EventObject;
import java.util.HashMap;
/** /**
* 票据管理开票/收票登记开票申请票据类型根据单据发布应用决定票据类型过滤默认票据类型 * 票据管理开票/收票登记开票申请票据类型根据单据发布应用决定票据类型过滤默认票据类型

View File

@ -1,7 +1,6 @@
package kdsz.zyf25.tmc.cfm.plugin.form.cdm; package kdsz.zyf25.tmc.cfm.plugin.form.cdm;
import kd.bos.bill.AbstractBillPlugIn; import kd.bos.bill.AbstractBillPlugIn;
import kd.bos.entity.datamodel.events.ChangeData;
import kd.bos.entity.datamodel.events.PropertyChangedArgs; import kd.bos.entity.datamodel.events.PropertyChangedArgs;
import kd.sdk.plugin.Plugin; import kd.sdk.plugin.Plugin;

View File

@ -94,7 +94,7 @@ public class CdmInterestAccrualPlugin extends AbstractOperationServicePlugIn imp
if (jxBill == null)continue; if (jxBill == null)continue;
DynamicObject payEntry = payEntries.addNew(); DynamicObject payEntry = payEntries.addNew();
payEntry.set("seq", ++size); payEntry.set("seq", ++size);
payEntry.set("kdsz_interestbill",successPkId); payEntry.set("kdsz_interestbill",jxBill);
payEntry.set("kdsz_interestbillno",jxBill.getString("billno")); payEntry.set("kdsz_interestbillno",jxBill.getString("billno"));
payEntry.set("kdsz_interestbillid",successPkId); payEntry.set("kdsz_interestbillid",successPkId);
payEntry.set("kdsz_valuedate",jxBill.getDate("kdsz_valuedate")); payEntry.set("kdsz_valuedate",jxBill.getDate("kdsz_valuedate"));

View File

@ -3,7 +3,6 @@ package kdsz.zyf25.tmc.cfm.plugin.operate;
import kd.bos.dataentity.entity.DynamicObject; import kd.bos.dataentity.entity.DynamicObject;
import kd.bos.dataentity.entity.DynamicObjectCollection; import kd.bos.dataentity.entity.DynamicObjectCollection;
import kd.bos.entity.ExtendedDataEntity; import kd.bos.entity.ExtendedDataEntity;
import kd.bos.entity.filter.QFilterDto;
import kd.bos.entity.plugin.AbstractOperationServicePlugIn; import kd.bos.entity.plugin.AbstractOperationServicePlugIn;
import kd.bos.entity.plugin.AddValidatorsEventArgs; import kd.bos.entity.plugin.AddValidatorsEventArgs;
import kd.bos.entity.plugin.PreparePropertysEventArgs; import kd.bos.entity.plugin.PreparePropertysEventArgs;