campo-sirio/src/tf/tf0.cpp
mtollari f5ad9b6e81 Patch level : 12.0 384
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
2017-04-28 15:14:33 +00:00

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;
}