2005-04-12 10:14:28 +00:00
|
|
|
|
#include <xvt.h>
|
|
|
|
|
#include "ci0.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
|
{
|
2005-04-18 15:31:21 +00:00
|
|
|
|
const int op = (argc > 1) ? argv[1][1] - '0' : 0;
|
|
|
|
|
switch (op)
|
2005-04-12 10:14:28 +00:00
|
|
|
|
{
|
2010-06-17 16:04:30 +00:00
|
|
|
|
case 0 : ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
|
|
|
case 1 : ci0200(argc,argv); break; // gestione risorse / attrezzature
|
2013-07-26 15:43:33 +00:00
|
|
|
|
case 2 : ci0300(argc,argv); break; // parametri configurazione Contabilit<69> Industriale
|
2010-06-17 16:04:30 +00:00
|
|
|
|
case 3 : ci0400(argc,argv); break; // immssione documenti
|
2010-06-30 14:34:25 +00:00
|
|
|
|
case 4 : ci0500(argc,argv); break; // gestione disponibilit<69> risorse / attrezzature
|
2010-07-24 07:20:54 +00:00
|
|
|
|
case 5 : ci0600(argc,argv); break; // gestione default risorse / attrezzature
|
2013-07-26 15:43:33 +00:00
|
|
|
|
case 6 : ci0700(argc,argv); break; // creazione do
|
2010-06-17 16:04:30 +00:00
|
|
|
|
default: ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
2005-04-12 10:14:28 +00:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|