Files correlati : tf Commento : - Aggiunta nuovo modulo TF, con programma Liquidazione IVA Periodica - Aggiunta tabelle f173 e f174, la prima per il trasferimento fatture (in lavorazione) e la seconda per questo nuovo programma git-svn-id: svn://10.65.10.50/branches/R_10_00@23760 c028cbd2-c16b-5b4b-a496-9718f37d4682
22 lines
593 B
C++
22 lines
593 B
C++
#include <xvt.h>
|
|
#include "tf0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int rt = -1;
|
|
const int r = (argc > 1) ? atoi( &argv[1][1] ) : 1;
|
|
|
|
switch (r)
|
|
{
|
|
|
|
case 1 : rt = tf0200(argc, argv); break; // Comunicazione Liquidazioni Periodiche IVA
|
|
//case 2 : rt = tf0300(argc, argv); break; // Nuovo Spesometro (2017)
|
|
//case 3: rt = tf0400(argc, argv); break; // Invio TF
|
|
case 4: rt = tf0500(argc, argv); break; // Invio IVA
|
|
//case 5: rt = tf0600(argc, argv); break; // Invio Spesometro
|
|
default: rt = tf0100(argc, argv); break; // Trasferimento Fatture Elettroniche
|
|
}
|
|
return rt;
|
|
}
|
|
|