From 718217341faff18a801e11ba450465f30ca478f2 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 24 Mar 2005 16:04:08 +0000 Subject: [PATCH] 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 --- ve/batbtri.uml | 3 ++- ve/velib.h | 3 ++- ve/velib01.cpp | 14 ++++++++++---- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/ve/batbtri.uml b/ve/batbtri.uml index 5faa9f9cc..aef8c618e 100755 --- a/ve/batbtri.uml +++ b/ve/batbtri.uml @@ -45,7 +45,8 @@ PAGE "Tipo di riga" -1 -1 60 14 ITEMS "M|erce" ITEMS "S|pese" ITEMS "P|

restazioni" - ITEMS "D|ipendenti" + ITEMS "R|isorse" + ITEMS "A|ttrezzature" ITEMS "C|Sonti" ITEMS "O|maggi" ITEMS "D|escrizioni" diff --git a/ve/velib.h b/ve/velib.h index a244e4916..d42299bed 100755 --- a/ve/velib.h +++ b/ve/velib.h @@ -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' diff --git a/ve/velib01.cpp b/ve/velib01.cpp index fea6e7464..4577bbf24 100755 --- a/ve/velib01.cpp +++ b/ve/velib01.cpp @@ -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);