Patch level : 2.2 54

Files correlati     :  cg2.exe
Ricompilazione Demo : [ ]
Commento            :


Cambiata la tabella DIP in RSS (Risorse). Aggiunta la tabella (ATR) Attrezzature


git-svn-id: svn://10.65.10.50/trunk@12854 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2005-03-24 16:04:08 +00:00
parent 097c2a0b66
commit 718217341f
3 changed files with 14 additions and 6 deletions

View File

@ -45,7 +45,8 @@ PAGE "Tipo di riga" -1 -1 60 14
ITEMS "M|<M>erce"
ITEMS "S|<S>pese"
ITEMS "P|<P>restazioni"
ITEMS "D|<D>ipendenti"
ITEMS "R|<R>isorse"
ITEMS "A|<A>ttrezzature"
ITEMS "C|S<c>onti"
ITEMS "O|<O>maggi"
ITEMS "D|<D>escrizioni"

View File

@ -54,7 +54,8 @@ class TViswin;
#define RIGA_MERCE 'M'
#define RIGA_SPESEDOC 'S'
#define RIGA_PRESTAZIONI 'P'
#define RIGA_DIPENDENTI 'D'
#define RIGA_RISORSE 'R'
#define RIGA_ATTREZZATURE 'A'
#define RIGA_SCONTI 'C'
#define RIGA_OMAGGI 'O'
#define RIGA_DESCRIZIONI 'D'

View File

@ -77,8 +77,11 @@ TSpesa_prest::TSpesa_prest(const char* codice, char tipo)
case RIGA_PRESTAZIONI :
settab("PRS");
break;
case RIGA_DIPENDENTI :
settab("DIP");
case RIGA_RISORSE :
settab("RSS");
break;
case RIGA_ATTREZZATURE :
settab("ATR");
break;
default :
settab("SPP");
@ -97,8 +100,11 @@ TSpesa_prest::TSpesa_prest(const char* codice, char tipo)
case RIGA_PRESTAZIONI :
error_box("Prestazione %s assente", codice);
break;
case RIGA_DIPENDENTI :
error_box("Dipendente %s assente", codice);
case RIGA_RISORSE :
error_box("Risorsa %s assente", codice);
break;
case RIGA_ATTREZZATURE :
error_box("Attrezzatura %s assente", codice);
break;
default :
error_box("Spesa %s assente", codice);