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

ws.cartTxInvBas.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 TAX as TAXID, TAX.NME as TAXNAME, RATE, sum(SUBT) as SUBT
from
( select TXCT, SUBT from CARTLN
  where TXCT is not null and DISAB=0 and SELR:CONDSEL and OWNR=:CARTID
) as ALL_LINES
join TXCT on TXCT.IID=TXCT
join TXCTLN on TXCTLN.OWNR=TXCT.IID
join TAX on TXCTLN.TAX=TAX.IID
group by TAXID, TAXNAME, RATE;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy