Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
		
						commit
						78f4120c57
					
				| 
						 | 
				
			
			@ -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')
 | 
			
		||||
} 
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -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 {
 | 
			
		||||
	
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -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);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
package shkd.sys.sys.business;
 | 
			
		||||
package sys.business;
 | 
			
		||||
 | 
			
		||||
import java.util.ArrayList;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
		Loading…
	
		Reference in New Issue