使用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...
点击下载文档
本文2024-09-16 17:43:21发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-17537.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章