Patch level : 2.2 102

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/trunk@13108 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2005-05-17 15:38:08 +00:00
parent 06255d7594
commit 968e57a5cb
2 changed files with 12 additions and 1 deletions

View File

@ -1190,7 +1190,7 @@ bool TAnal_mov::save_saldi()
}
if (err != NOERR)
return error_box(TR("Impossibile aggiornare i saldi"));
return error_box(FR("Impossibile aggiornare i saldi: errore %d"), err);
}
}
return true;
@ -1311,3 +1311,8 @@ const TRecord_array& TCache_ripartizioni::righe(const int gruppo, const int cont
parametro << "3|" << gruppo << '|' << conto << '|' << sottoconto; //per chiave 3
return *(const TRecord_array*)objptr(parametro);
}
const TRecord_array& TCache_ripartizioni::righe(const TBill& bill)
{
return righe(bill.gruppo(), bill.conto(), bill.sottoconto());
}

View File

@ -13,6 +13,11 @@
#include <relapp.h>
#endif
#ifndef __CGLIB03_H
#include "../cg/cg2103.h"
#endif
class TMultilevel_code_info : public TObject
{
int _logicnum; // Logic number of main file
@ -162,6 +167,7 @@ protected:
public:
const TRecord_array& righe(const char* costo, const char* commessa);
const TRecord_array& righe(const int gruppo, const int conto, const long sottoconto);
const TRecord_array& righe(const TBill& bill);
};