在 Exact Online 中,您无法轻松确定最近已支付的发票,也无法根据该金额计算出总额,以此作为我们为销售人员提供的依据。我如何才能获得这样的清单?
答案1
总帐科目代码 1300 或其他临时科目用于发布未付销售发票。当它们被移出该临时科目时,您将知道它们已付款。您将需要一个 Invantive SQL 查询,例如:
select costcenter
, division
, listagg(accountcode) lijstrelaties
, sum(amountdc)
, listagg(invoicenumber) facturen
from transactionlines
where glaccountcode = '1300'
and financialyear = year(sysdate)
and financialperiod = month(sysdate)
group
by costcenter
, division
您可能需要使用例如来额外指定它是流出amountdc < 0
。现在它将流入和流出相加。