Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some reports should be updated #56

Open
vomikan opened this issue Jan 17, 2019 · 4 comments
Open

Some reports should be updated #56

vomikan opened this issue Jan 17, 2019 · 4 comments

Comments

@vomikan
Copy link
Member

vomikan commented Jan 17, 2019

https://forum.moneymanagerex.org/viewtopic.php?f=16&t=8015

@vomikan
Copy link
Member Author

vomikan commented Jan 26, 2019

For simple update I suggest to add with CURRENCYFORMATS_V1 as

with CURRENCYFORMATS_V1 as (with h as (select  CURRENCYID 
        , max(CURRVALUE) CURRVALUE from CURRENCYHISTORY 
        where  CURRDATE<= date('now')
        group by CURRENCYID)
select c.CURRENCYID, c.CURRENCYNAME, c.PFX_SYMBOL, c.SFX_SYMBOL
    , DECIMAL_POINT, GROUP_SEPARATOR, SCALE, CURRENCY_SYMBOL
    , CURRENCY_TYPE, HISTORIC
         , ifnull(h.CURRVALUE, 1) BASECONVRATE
        from CURRENCYFORMATS c
        left join h on h.CURRENCYID=c.CURRENCYID)
select * from CURRENCYFORMATS_V1

@vomikan
Copy link
Member Author

vomikan commented Jan 27, 2019

@valsamis-d
Copy link

Thank you vomikan!

The issue, though, after upgrading to Alpha_6 is that my graphs won't show up. I fixed my queries in order to follow the revised schema, data are being returned in a tabular format but the graph above the report is not being drawn.

Dimitrios

@vomikan
Copy link
Member Author

vomikan commented Jan 27, 2019

vomikan added a commit that referenced this issue Apr 13, 2020
- downgrade sql validator for DB v7 only
- recursive folder search
- zip only GRM required files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants