Patch level : 12.00 1278

Files correlati     : ca3.exe ca3*.msk
Commento            :

La stampa del bilancio di commessa non considerava bene le fatturre da ricevere evase.
This commit is contained in:
Alessandro Bonazzi 2023-08-24 01:01:33 +02:00
parent 6631045d09
commit 5c0af15c44

View File

@ -1741,6 +1741,8 @@ bool TReport_select::check(CheckTime ct)
TToken_string * row = (TToken_string *)obj;
found = (repdescr == row->get(0));
if (_type == 'D' && !found)
found = (repdescr == row->get(1));
if (found)
{
name = row->get(descr_type() ? 1 : 0);
@ -1784,7 +1786,7 @@ const TString & TReport_select::get_path(const char * name)
found = (repdescr == row->get(0));
if (found)
{
path = row->get(0);
path = _type =="D" ? row->get(1) : row->get(0);
break;
}
}