Files correlati : Ricompilazione Demo : [ ] Commento :aggiunto il post-installatore di TC 0001461: modifica dicitura pre numerazione pagine bollati Descrizione Un cliente continua ad utilizzare la procedura di pre Intestazione e numerazione dei Registri e mi chiede di modificare la dicitura attuale che lè a seguente: IL PRESENTE LIBRO DELLA ..(RAGIONE SOC. DITTA) VIA CAP COMUNE PR CONSTA DI PAGINE UTILI, BOLLATE, E NUMERATE E VIENE OGGI VIDIMATO, IL .. Con questaltra: IL PRESENTE LIBRO DELLA DITTA (RAGIONE SOC. DITTA) VIA CAP COMUNE PR CONSTA DI N. PAGINE NUMERATE DAL N. 01 AL N. git-svn-id: svn://10.65.10.50/trunk@19417 c028cbd2-c16b-5b4b-a496-9718f37d4682
48 lines
1.5 KiB
C++
Executable File
48 lines
1.5 KiB
C++
Executable File
#include <applicat.h>
|
|
|
|
|
|
#include "bainst.h"
|
|
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
TApplication::check_parameters(argc, argv);
|
|
|
|
int r = 0;
|
|
if (argc < 2) return 0;
|
|
TString4 mod;
|
|
mod.strncpy(argv[2], 2);
|
|
mod.lower();
|
|
|
|
if (mod == "cg")
|
|
r = bainst07(argc,argv); // pre/post installazione contabilità generale:
|
|
else if (mod == "ce")
|
|
r = bainst11(argc, argv);// pre/post installazione cespiti
|
|
else if (mod == "at")
|
|
r = bainst17(argc, argv);// pre/post installazione avis
|
|
else if (mod == "in")
|
|
r = bainst18(argc, argv);// pre/post installazione intra
|
|
else if (mod == "vd")
|
|
r = bainst23(argc, argv);// pre/post installazione vendite al dettaglio
|
|
else if (mod == "tc")
|
|
r = bainst27(argc, argv);//pre/post installazione trasferimento altre contabilità
|
|
else if (mod == "ve")
|
|
r = bainst31(argc, argv);// pre/post installazione vendite:
|
|
else if (mod == "mg")
|
|
r = bainst32(argc, argv);// pre/post installazione magazzino:
|
|
else if (mod == "ef")
|
|
r = bainst34(argc, argv);// pre/post installazione effetti:
|
|
else if (mod == "db")
|
|
r = bainst35(argc, argv);// pre/post installazione distinta base:
|
|
else if (mod == "sv")
|
|
r = bainst38(argc, argv);// pre/post installazione statistiche:
|
|
else if (mod == "mr")
|
|
r = bainst39(argc, argv);// pre/post installazione MRP
|
|
else if (mod == "lv")
|
|
r = bainst41(argc, argv);// pre/post installazione lavanderie
|
|
else
|
|
r = bainst00(argc, argv);// pre/post installazione base
|
|
return 0;
|
|
}
|
|
|