如何在 QuickBooks Online 中获取会计 "Closing date"
How to get Accounting "Closing date" in QuickBooks Online
我想检索有关会计“结算日期”的信息。
找到 here that it is present in Entitlements entity.
但是看起来这个库不支持它。
是否有其他方式获取会计“结算日期”。
初始问题,我在创建账单或发票时遇到以下错误:
{
"error_code": "5010",
"detail": "The account period has closed. {1}",
"message": "Account Period Closed"
}
还创建了 issue on Whosebug for that in python-quickbooks 我用来访问数据的库。
您可以为此使用 Preferences
实体。它包含 AccountingInfoPrefs.BookCloseDate
.
目前,已实现首选项的 python-quickbooks
yet (see this open PR, but you can use this fork 不完全支持它。您可以使用以下方式安装它:
pip install git+https://github.com/wowkin2/python-quickbooks.git@entity_preferences
P.S。注意你用来初始化 QuickBooks()
对象的 minorversion
,它至少应该是 minorversion=21
.
我想检索有关会计“结算日期”的信息。 找到 here that it is present in Entitlements entity.
但是看起来这个库不支持它。
是否有其他方式获取会计“结算日期”。
初始问题,我在创建账单或发票时遇到以下错误:
{
"error_code": "5010",
"detail": "The account period has closed. {1}",
"message": "Account Period Closed"
}
还创建了 issue on Whosebug for that in python-quickbooks 我用来访问数据的库。
您可以为此使用 Preferences
实体。它包含 AccountingInfoPrefs.BookCloseDate
.
目前,已实现首选项的 python-quickbooks
yet (see this open PR, but you can use this fork 不完全支持它。您可以使用以下方式安装它:
pip install git+https://github.com/wowkin2/python-quickbooks.git@entity_preferences
P.S。注意你用来初始化 QuickBooks()
对象的 minorversion
,它至少应该是 minorversion=21
.