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

acc.blnSht.sql Maven / Gradle / Ivy

Go to download

Beigesoft™ Enterprise Information System is a standalone JEE web application that runs on the embedded A-Jetty for Android. Web-Store is included for study and tests purposes, and you are also able to make a full DB copy from a cloud version, and you can make price lists (in different price categories) and export them via CSV files to your customers and POS.

The newest version!
select ACC as ACID, NMBR, TYP, NME,
case when BLTY=0 then ALRCS.DEBT-ALRCS.CRED else 0 end as DEBT,
case when BLTY=1 then ALRCS.CRED-ALRCS.DEBT else 0 end as CRED
from
  (select ACC, NMBR, TYP, BLTY, NME, sum(DEBT) as DEBT, sum(CRED) as CRED
    from
      ( select ACC, NMBR, TYP, BLTY, NME, 
        case when ACNT.BLTY=0 then BLN else 0 end as DEBT,
        case when ACNT.BLTY=1 then BLN else 0 end as CRED
        from  BLNC
        join ACNT on BLNC.ACC=ACNT.IID 
        where TYP<3 and DAT=:DT1
      union all
        select ACDB as ACC, NMBR, TYP, BLTY, NME, DEBT, 0.00 as CRED
        from  ENTR 
        join ACNT on ENTR.ACDB=ACNT.IID 
        where TYP<3 and DAT>=:DT1 and DAT<=:DT2
      union all
        select ACCR as ACC, NMBR, TYP, BLTY, NME, 0 as DEBT, CRED
        from  ENTR 
        join ACNT on ENTR.ACCR=ACNT.IID 
        where TYP<3 and DAT>=:DT1 and DAT<=:DT2
      ) as UNRECS
    group by ACC, NMBR, TYP, BLTY, NME
  ) as ALRCS
order by NMBR;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy