使用BeforeSave事件Python

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-16浏览:1

使用BeforeSave事件Python

python代码:


def BeforeSave(f):

    # 获取业务日期

    billDate = this.Model.GetValue('FDATE')

    # 获取创建日期

    creatDate = this.Model.GetValue('FCREATEDATE')

    # 判断业务日期与创建日期年月

    if billDate.Year == creatDate.Year and billDate.Month<creatDate.Month:

        this.Model.SetValue("F_account_Date",creatDate)

        F_account_Date = this.Model.GetValue('F_account_Date')

    else:

        this.Model.SetValue("F_account_Date",billDate)

        F_account_Date = this.Model.GetValue('F_account_Date')

    #this.View.ShowMessage("保存成功!"+    "账单日期为:"+str(billDate) + ",创建日期为:"+str(creatDate) + ",业务日期所属年月小于创建日期所属年月时,凭证日期为创建日期!否则为业务日期!")


使用BeforeSave事件Python

python代码:def BeforeSave(f): # 获取业务日期 billDate = this.Model.GetValue('FDATE') # 获取创建日期 crea...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息