Files correlati : fp Commento : - Prima release (da testare) personalizzazioni fatture elettroniche - Modificata esportazione fatture per supportare le personalizzazioni - Aggiornamento DB
21 lines
613 B
C++
21 lines
613 B
C++
#include <xvt.h>
|
|
#include "fp0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int rt = -1;
|
|
const int r = (argc > 1) ? atoi( &argv[1][1] ) : 0;
|
|
|
|
switch (r)
|
|
{
|
|
case 1: rt = fp0200(argc, argv); break; // Inserimento massivo PEC e Cod Sdi clifo
|
|
case 2: rt = fp0300(argc, argv); break; // Gestione fatture attive (PAA, Ex Fattura PA)
|
|
case 3: rt = fp0400(argc, argv); break; // Monitor fatture passive
|
|
case 4: rt = fp0500(argc, argv); break; // Customizzazioni FP per utente
|
|
case 5: rt = fp0600(argc, argv); break; // Da fare
|
|
default: rt = fp0100(argc, argv); break; // Configurazione
|
|
}
|
|
return rt;
|
|
}
|
|
|