后台调用编码规则

        // 如果单据编码为空,则调用编码规则生成一个编码,否则不能通过verifyNumber方法的校验  
        if (com.kingdee.util.StringUtils.isEmpty(billInfo.getNumber())) {  
            IMetaDataLoader imeataLoader = MetaDataLoaderFactory.getLocalMetaDataLoader(ctx);  
            BusinessObjectInfo objInfo = imeataLoader.getBusinessObject(billInfo.getBOSType());  
            String orgType = objInfo.getExtendedProperty("OrgType");  
            if (StringUtils.isEmpty(orgType)) {  
                orgType = "NONE";  
            }  
            _setAutoNumberByOrg(ctx, billInfo, orgType);  
        }  

protected void setAutoNumberByOrg(Context ctx, ObjectBaseInfo model,  
            String orgType) throws CodingRuleException, EASBizException,  
            BOSException {  
        String sysNumber = null;  
  
        if (!StringUtils.isEmpty(orgType) && !"NONE".equalsIgnoreCase(orgType) && ContextUtil.getCurrentOrgUnit(ctx, OrgType.getEnum(orgType)) != null) {  
            sysNumber = FrameWorkUtils.getCodeRuleServer(ctx, model, ContextUtil.getCurrentOrgUnit(ctx, OrgType.getEnum(orgType)).getString("id"));  
        } else if (ContextUtil.getCurrentOrgUnit(ctx) != null) {  
           sysNumber = FrameWorkUtils.getCodeRuleServer(ctx, model, ContextUtil.getCurrentOrgUnit(ctx).getString("id"));  
        }  
        if (!StringUtils.isEmpty(sysNumber)) {  
            model.setString("number", sysNumber);  
        }  
    }  

// 如果单据编码为空,需要调用编码规则生成编码
protected void _setAutoNumberByOrg(Context ctx, ObjectBaseInfo editData, String orgType)  
        throws EASBizException, BOSException {  
  
    if (editData == null)  
        return;  
    if (editData.getString("number") == null) {  
        String companyID = null;  
        if (!com.kingdee.util.StringUtils.isEmpty(orgType)  
                && !"NONE".equalsIgnoreCase(orgType)  
                && ContextUtil.getCurrentOrgUnit(ctx, com.kingdee.eas.basedata.org.OrgType  
                        .getEnum(orgType)) != null) {  
            companyID = ContextUtil.getCurrentOrgUnit(ctx, OrgType.getEnum(orgType)).getString(  
                    "id");  
        } else if (ContextUtil.getCurrentOrgUnit(ctx) != null) {  
            companyID = ((OrgUnitInfo) ContextUtil.getCurrentOrgUnit(ctx)).getString("id");  
        }  
        ICodingRuleManager iCodingRuleManager = CodingRuleManagerFactory.getLocalInstance(ctx);  
        if (iCodingRuleManager.isExist(editData, companyID)) {  
               if (iCodingRuleManager.isAddView(editData, companyID)) {  
           editData.setString("number", iCodingRuleManager.getNumber(editData, companyID));  
               }  
        }  
    }  
  
}  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值