金蝶云星空,取消暂估下推红字暂估无法保存的校验。原创
金蝶云社区-吃面
吃面
36人赞赏了该文章 346次浏览 未经作者许可,禁止转载编辑于2023年02月20日 20:05:45

def OnAddValidators(e):

    target = -1

    index = -1

    for item in e.Validators:

        index = index + 1

        if str(item).find('APSaveForHookValidator') > 0:

            target = index

    if target > -1:

        e.Validators.RemoveAt(target);

以上是注册到应付单保存操作里的,若是应收则把标红的部分换成ARSaveForHookValidator注册到应收保存操作里。

注册方式参考:https://vip.kingdee.com/article/408635073186111488?productLineId=1

赞 36