All Downloads are FREE. Search and download functionalities are using the official Maven repository.

acc.trade.invGdTxInBs.sql Maven / Gradle / Ivy

Go to download

It consists of double entry accounting and trading (web-store) business logic. It's based on previous beigesoft-accounting and beigesoft-webstore projects.

The newest version!
select TXCT as TXCTID, TAX as TAXID, TAX.NME as TAXNME, RATE, sum(SUBT) as SUBT, sum(SUFC) as SUFC
from
( select TXCT, SUBT, SUFC from :TGDLN
  where TXCT is not null and RVID is null and OWNR=:INVID
) as ALLNS
join TXCT on TXCT.IID=ALLNS.TXCT
join TXCTLN on TXCTLN.OWNR=TXCT.IID
join TAX on TXCTLN.TAX=TAX.IID
group by TXCTID, TAXID, TAXNME, RATE
order by TAXID;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy