Files correlati : tf Commento : Sostituito nome "Spesometro" da "Trasferimento fatture" git-svn-id: svn://10.65.10.50/branches/R_10_00@24059 c028cbd2-c16b-5b4b-a496-9718f37d4682
20 lines
527 B
C++
20 lines
527 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; // Cambio stato invio
|
|
case 3 : rt = tf0400(argc, argv); break; // Controllo Trasferimento fatture
|
|
case 4 : rt = tf0500(argc, argv); break; // Invio IVA
|
|
default: rt = tf0100(argc, argv); break; // Trasferimento fatture
|
|
}
|
|
return rt;
|
|
}
|
|
|