f7bb34867d
Files correlati : pd5317 Ricompilazione Demo : [ ] Commento : Corretta formula git-svn-id: svn://10.65.10.50/branches/R_10_00@22556 c028cbd2-c16b-5b4b-a496-9718f37d4682
20 lines
737 B
C++
Executable File
20 lines
737 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
|
|
case 6: ps0713700(argc, argv); break; //Eliminazione conti non analitici dai movimenti
|
|
default: ps0713100(argc, argv); break; //Esportazione righe IVA
|
|
}
|
|
return 0;
|
|
} |