insert_to_event_table¶
- async AsyncAccountingEventType.insert_to_event_table(object_id_list)¶
业务主健插入会计事件表
- 参数
业务主键ID集合
示例
1.实例化会计事件类型
from deepfos.element.accounting import AccountingEventType # 1. 根据元素编码 进行实例化 eventType = AccountingEventType('zhy_0104_001') # 2. 根据元素编码和路径 进行实例化 eventType = AccountingEventType(element_name='zhy_0104_001',path="/zhy_test/event") # 3. 根据元素编码和文件夹ID,进行实例化 eventType = AccountingEventType(element_name='zhy_0104_001',folder_id='DIR1b7e6f8b5bc3')
2.业务主健插入会计事件表
# 1. 指定参数名 object_id_list,并传业务ID集合 eventType.insert_to_event_table(object_id_list=["A00000002","A00000003"]) # 2. 不指定参数名,直接传业务ID集合 eventType.insert_to_event_table(["A00000004","A00000005"])
提示
object_id_list
业务主键ID集合, 表示将业务主键集合,插入到会计事件类型元素(zhy_0104_001)对应的事件表中。
- 返回类型