574082a69d
Files correlati : ps0713 e tutte le maschere Ricompilazione Demo : [ ] Commento : Portato sulla 10.0 il ps dell'ATS con prevista l'analitica git-svn-id: svn://10.65.10.50/trunk@20447 c028cbd2-c16b-5b4b-a496-9718f37d4682
20 lines
665 B
C++
Executable File
20 lines
665 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "ps0713.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int n = argc > 1 ? atoi(argv[1]+1) : 0;
|
|
switch(n)
|
|
{
|
|
case 0: ps0713100(argc, argv); break; //Esportazione righe IVA
|
|
case 1: ps0713200(argc, argv); break; //Importazione commesse
|
|
case 2: ps0713300(argc, argv); break; //Importazione fatture di acquisto
|
|
case 3: ps0713400(argc, argv); break; //Importazione fatture di vendita
|
|
case 4: ps0713500(argc, argv); break; //Importazione spese
|
|
case 5: ps0713600(argc, argv); break; //Importazione fatture fornitori / fatture da ricevere
|
|
default: ps0713100(argc, argv); break; //Esportazione righe IVA
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
} |