Merge remote-tracking branch 'origin/main' into main

This commit is contained in:
fang 2024-11-08 10:09:40 +08:00
commit 78f4120c57
15 changed files with 42 additions and 18 deletions

View File

@ -1,14 +0,0 @@
/*
* This is a kingdee cosmic template project that is automatically generated by the Kingdee cosmic development assistant plugin.
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
* Website: https://developer.kingdee.com/developer?productLineId=29
* Author: liebin.zheng
* Generate Date: 2024-10-25 13:35:51
*/
dependencies {
api project(':shkd-base-common')
api project(':shkd-base-helper')
}

View File

@ -3,9 +3,9 @@
* If there are any issues during the use process, you can provide feedback to the kingdee developer community website.
* Website: https://developer.kingdee.com/developer?productLineId=29
* Author: liebin.zheng
* Generate Date: 2024-10-25 13:35:51
* Generate Date: 2024-10-25 14:27:06
*/
package shkd.sys.sys.common;
package shkd.shkd1.sys.sys.common;
/**
* sys云sys应用-通用常量类<br>
@ -13,7 +13,7 @@ package shkd.sys.sys.common;
* 标识或缓存的常量需以"KEY_""FID_""ENTRY_""SUBENTRY_"作为变量的前缀<br>
*
* @author shkd
* @date 2024-10-25 13:35:51
* @date 2024-10-25 14:27:06
*/
public class AppflgConstant {

View File

@ -0,0 +1,18 @@
package shkd.sys.sys.plugin.api;
import kd.bos.openapi.api.plugin.ApiSavePlugin;
import java.util.List;
import java.util.Map;
/**
* @Description
* @Author Tao
* @Date 2024/11/7
*/
public class PayBillApiSavePlugin implements ApiSavePlugin {
@Override
public List<Map<String, Object>> preHandleRequestData(List<Map<String, Object>> reqData) {
return reqData;
}
}

View File

@ -0,0 +1,20 @@
package fi.plugin;
import kd.bos.form.control.events.BeforeItemClickEvent;
import kd.bos.form.control.events.ItemClickEvent;
import kd.bos.list.plugin.AbstractListPlugin;
import java.util.EventObject;
public class APPaymentListPlugin extends AbstractListPlugin {
@Override
public void beforeItemClick(BeforeItemClickEvent evt) {
super.beforeItemClick(evt);
String itemKey = evt.getItemKey();
if ("tbldel".equals(itemKey)){
this.getView().showErrorNotification("测试————无法删除!");
evt.setCancel(true);
}
}
}

View File

@ -1,4 +1,4 @@
package shkd.sys.sys.business;
package sys.business;
import java.util.ArrayList;
import java.util.List;