Patch level :
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@18348 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
8fe11d83f6
commit
78227d80c2
@ -416,6 +416,9 @@ class TContabil_tsys_app : public TApplication
|
|||||||
TString_array _tipi_doc; // Array di stringhe contenente i tipi documenti da elaborare
|
TString_array _tipi_doc; // Array di stringhe contenente i tipi documenti da elaborare
|
||||||
|
|
||||||
protected: // TApplication
|
protected: // TApplication
|
||||||
|
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
|
|
||||||
// Contabilizza i documenti
|
// Contabilizza i documenti
|
||||||
void contabilize(TConfig & c);
|
void contabilize(TConfig & c);
|
||||||
// Le 4 seguenti non hanno bisogno di commenti
|
// Le 4 seguenti non hanno bisogno di commenti
|
||||||
@ -588,7 +591,7 @@ bool TContabil_tsys_app::create()
|
|||||||
open_files(LF_TABCOM, LF_TAB, LF_CLIFO, LF_OCCAS, LF_INDSP, LF_CFVEN,
|
open_files(LF_TABCOM, LF_TAB, LF_CLIFO, LF_OCCAS, LF_INDSP, LF_CFVEN,
|
||||||
LF_DOC, LF_RIGHEDOC, LF_ANAMAG, LF_MOVMAG, LF_RMOVMAG, LF_PROVV,
|
LF_DOC, LF_RIGHEDOC, LF_ANAMAG, LF_MOVMAG, LF_RMOVMAG, LF_PROVV,
|
||||||
LF_PCON, LF_CONDV, LF_SVRIEP, LF_AGENTI, LF_PERCPROV, LF_ATTIV, LF_CAUSALI, 0);
|
LF_PCON, LF_CONDV, LF_SVRIEP, LF_AGENTI, LF_PERCPROV, LF_ATTIV, LF_CAUSALI, 0);
|
||||||
_msk = new TMask("ps007100a");
|
_msk = new TMask("ps0077100a");
|
||||||
_msk->set_handler(F_CODICE_ELAB,handle_cod_eld);
|
_msk->set_handler(F_CODICE_ELAB,handle_cod_eld);
|
||||||
_msk->set_handler(F_DATA_INI,handle_data_range);
|
_msk->set_handler(F_DATA_INI,handle_data_range);
|
||||||
_msk->set_handler(F_DATA_FIN,handle_data_range);
|
_msk->set_handler(F_DATA_FIN,handle_data_range);
|
||||||
|
@ -222,6 +222,9 @@ class TStampaFlussiCassa : public TSkeleton_application
|
|||||||
real _totale; // totale a partire da saldo iniziale
|
real _totale; // totale a partire da saldo iniziale
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
|
|
||||||
virtual bool create(void);
|
virtual bool create(void);
|
||||||
virtual bool destroy(void);
|
virtual bool destroy(void);
|
||||||
virtual void main_loop() ;
|
virtual void main_loop() ;
|
||||||
|
@ -45,6 +45,9 @@ class TEntrFor: public TSkeleton_application
|
|||||||
long _ritant;
|
long _ritant;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
|
|
||||||
virtual bool create(void);
|
virtual bool create(void);
|
||||||
virtual bool destroy(void);
|
virtual bool destroy(void);
|
||||||
virtual void main_loop();
|
virtual void main_loop();
|
||||||
|
@ -57,6 +57,9 @@ class TBolle2Conad : public TSkeleton_application
|
|||||||
TAssoc_array* _elencobolle; // assoc array per verificare se la bolla č gia stat passata
|
TAssoc_array* _elencobolle; // assoc array per verificare se la bolla č gia stat passata
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
|
|
||||||
virtual bool create(void);
|
virtual bool create(void);
|
||||||
virtual bool destroy(void);
|
virtual bool destroy(void);
|
||||||
virtual void main_loop() ;
|
virtual void main_loop() ;
|
||||||
|
@ -36,6 +36,9 @@ class TRDoc2JBI : public TSkeleton_application
|
|||||||
TConfig* _config;
|
TConfig* _config;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
|
|
||||||
virtual bool create();
|
virtual bool create();
|
||||||
virtual bool destroy();
|
virtual bool destroy();
|
||||||
virtual void main_loop();
|
virtual void main_loop();
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
#include "ps0077600a.h"
|
#include "ps0077600a.h"
|
||||||
|
|
||||||
TOOLBAR "topbar" 0 2 0 0
|
TOOLBAR "topbar" 0 0 0 2
|
||||||
#include <stdbar.h>
|
#include <stdbar.h>
|
||||||
ENDPAGE
|
ENDPAGE
|
||||||
|
|
||||||
PAGE "trasferimento JBI" -1 -1 78 5
|
PAGE "trasferimento JBI" 0 2 0 0
|
||||||
|
|
||||||
NUMBER F_ANNO 4
|
NUMBER F_ANNO 4
|
||||||
BEGIN
|
BEGIN
|
||||||
|
@ -604,6 +604,7 @@ TTrasferimentoGalileo_mask::~TTrasferimentoGalileo_mask()
|
|||||||
class TTrasferimentoGalileo : public TSkeleton_application
|
class TTrasferimentoGalileo : public TSkeleton_application
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
|
virtual const char * extra_modules() const {return "ve";}
|
||||||
virtual void main_loop();
|
virtual void main_loop();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user