找回密码
 注册账号

QQ登录

只需一步,快速开始

手机号码,快捷登录

手机号码,快捷登录

初学者课程:T3自学|T6自学|U8自学软件下载课件下载工具下载资料:通资料|U8资料|NC|培训|年结积分规则 | 使用常见问题Q&A
知识库:U8 | | NC | U9 | OA | 政务U8|U9|NCC|NC65|NC65客开|NCC客开新手必读 | 任务 | 快速增金币用友QQ群[微信群]
查看: 9407|回复: 3

[求助] 自定义的公式如何加入公式编辑器里?

[复制链接]
发表于 2009-11-27 14:51:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册账号

×
我就写了个类:
package nc.pub.test.Function;
import java.util.List;
import nc.vo.pub.formulaset.IFormulaConstant;
import nc.vo.pub.formulaset.core.ParseException;
import nc.vo.pub.formulaset.function.NcInnerFunction;
public class CustomDifineFunction extends NcInnerFunction {
public CustomDifineFunction(){
  numberOfParameters = 2;
        functionType = IFormulaConstant.FUN_CUSTOM;
        functionDesc ="测试函数。参数 :1 单据PK(单据PK变量),2 审批顺序号(整形)";
}
public Object function(List param)throws ParseException{
  if (param == null || param.size() != 2){
   throw new ParseException("错误:参数个数不对,mon()不需要参数!");
  }
  Object param1 = param.get(0);
     Object param2 = param.get(1);   
  if(param1 != null && param1.toString().length()>1){
   try {
    return param2.toString();
   } catch (Exception e) {
    e.printStackTrace();
   }
  }
  return null;
}
}

然后在 : nchome\resources\formulaconfig\custfunction 路径下
放了个xml
<?xml version="1.0" encoding="gb2312"?>
<formula-array>
  <formula>
    <customType>0</customType>
    <functionName>Test</functionName>
    <functionClass>nc.pub.test.Function.CustomDifineFunction</functionClass>
  </formula>
</formula-array>

但是在公式编辑器里找不到我写是 test 函数
请高手指教!!!!
发表于 2009-12-14 13:27:24 | 显示全部楼层
这个有用,可以研究一下。
发表于 2009-12-23 13:00:03 | 显示全部楼层
非常感谢 学习 学习
发表于 2016-12-16 15:31:35 | 显示全部楼层
回复 点赞 拍砖

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

QQ|站长微信|Archiver|手机版|小黑屋|用友之家 ( 蜀ICP备07505338号|51072502110008 )

GMT+8, 2024-11-19 14:32 , Processed in 0.046454 second(s), 9 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表