通过 ODBC 从 Tally 提取日记本/交易数据以及账本父级

问题描述 投票:0回答:1

我能够通过第一次创建以下 TDL 来成功提取所有凭证数据

[Collection: RTSAllVouchers]

Type: Voucher

IsODBCTable: Yes

Fetch : *, AllLedgerEntries.*, LedgerEntries.*

然后运行下面的 SELECT 语句

Select $Date,$Reference,$VouchertypeName,$PartyLedgerName,$$CollectionField:$Amount:1:LedgerEntries from RTSAllVouchers where $$IsSales:$VoucherTypeName 

但是,我还需要提取 LEDGER PARENT、主要组、子组和库存项目名称以及附加单位对象。

请提供详细的解决方案。

odbc tally
1个回答
0
投票

您可以添加以下代码来获取值:

[#object: InventoryEntry] itemParent : $parent:stockItem:$stockItemName

在你的收藏中 获取:AllInventoryEntries.itemParent

© www.soinside.com 2019 - 2024. All rights reserved.