-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
I am looking into finans/kladdeliste.php. Thinking about doing a complete rewrite to give an example of a modern take on the code base.
As of now, I have figured out these status codes of bogfort in the db table kladdeliste:
Vbogført-in progress / still openSsomething to do with Simulate
But what does ! mean? I have found the following places, where this status is queried, but nowhere, where the status is actually set.
Line 1911 in f6e4cf2
| } elseif ($bogfort == '!') { |
Line 2439 in f6e4cf2
| $query = db_select("select kladdenote from kladdeliste where id = '$kladde_id' and bogfort='!'", __FILE__ . " linje " . __LINE__); |
Line 186 in f6e4cf2
| $query = db_select("select * from kladdeliste where bogfort = '!' $vis order by $sort $rf",__FILE__ . " linje " . __LINE__); |
Also these from another table betalingsliste:
saldi/debitor/betalingsliste.php
Line 168 in f6e4cf2
| $qtxt = "select * from betalingsliste where bogfort = '!' "; |
saldi/kreditor/betalingsliste.php
Line 105 in f6e4cf2
| $query = db_select("select * from betalingsliste where bogfort = '!' $vis order by $sort $rf",__FILE__ . " linje " . __LINE__); |