Exact Online 中每篇文章和分类代码的每月收入

Exact Online 中每篇文章和分类代码的每月收入

我想确定 Exact Online 中每个商品和分类代码的发货总数量和部门货币金额。Exact Online 仅提供每个帐户的概览。如何使用 Invantive Control 检索此列表?

答案1

这是一个经常出现的问题。您需要使用 Invantive SQL 语句,该语句将 Exact Online 总帐中的销售日记帐的数量和金额相加。它类似于以下内容:

select tle.division
,      tle.financialyear
,      tle.financialperiod
,      tle.itemcode
,      tle.item
,      itm.class_01
,      itm.class_10
,      sum(tle.quantity) quantity
,      sum(tle.amountdc) amountdc
from   transactionlines tle
join   exactonlinerest..items itm
on     itm.id = tle.item
where  tle.journalcode = '70'
and    tle.itemcode is not null
and    tle.financialyear = 2017
and    tle.financialperiod = 3
group 
by     tle.division
,      tle.financialyear
,      tle.financialperiod
,      tle.itemcode
,      tle.item
,      itm.class_01
,      itm.class_10
order
by     tle.division
,      tle.financialyear
,      tle.financialperiod

相关内容