git-svn-id: svn://10.65.10.50/branches/R_10_00@23163 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2015-12-21 11:21:54 +00:00
parent d946db93d0
commit 501a4cf167
12 changed files with 30 additions and 29 deletions

View File

@ -0,0 +1,12 @@
#Connection Default Properties
#Mon May 30 17:43:31 CEST 2005
database.user=
database.password=
database.name=
database.type=sqllite
database.url=jdbc\:sqlite\:f\:\\clienti\\DINAMICA\\SEPA\\SEPA00100.db
classForName=org.sqlite.JDBC
path.SEPA.BON=f\:\\clienti\\DINAMICA\\SEPA\\BON
path.SEPA.BON.log=f\:\\clienti\\DINAMICA\\SEPA\\BON
path.SEPA.RID=f\:\\clienti\\DINAMICA\\SEPA\\RID
path.SEPA.RID.log=f\:\\clienti\\DINAMICA\\SEPA\\RID

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
javaw -classpath .\classes;.\sqlite-jdbc4-3.8.2-SNAPSHOT.jar CreaXMLSCTMain %1

View File

@ -0,0 +1 @@
javaw -classpath .\classes;.\sqlite-jdbc4-3.8.2-SNAPSHOT.jar CreaXMLSDDMain %1

Binary file not shown.

View File

@ -14,8 +14,8 @@
////////////////////////////////////////////////////////////
class TEffetto:public TRectype
{
TRecord_array _righe;// righe dell'effetto
TRecord_array _cess;// cessionari dell'effetto
TRecord_array _righe; // righe dell'effetto
TRecord_array _cess; // cessionari dell'effetto
protected:
// ritorna la prossima chiave

View File

@ -315,7 +315,7 @@ void TEmissione::floppy()
//scandisco tutti i record di un effetto
FOR_EACH_ARRAY_ROW(keys, i, rec)
record(*rec);//emetto il record
if (!pi.add_status(1))
if (!pi.add_status())
break;
}
footer_ef(); //chiusura flusso effetti
@ -345,7 +345,7 @@ void TEmissione::floppy()
}
}
if (!pi.add_status(1))
if (!pi.add_status())
break;
}
}
@ -373,8 +373,7 @@ void TEmissione::save_data_emis()
effetto.put(EFF_NUMEMISS, numero);
effetto.put(EFF_DATAEMISS, data_emis);
effetto.put(EFF_DATARIBA, data_emis);
bool cond = TRUE;
effetto.put(EFF_DISRIBAEST, cond);
effetto.put(EFF_DISRIBAEST, true);
effetto.rewrite(effetti);
}
@ -769,7 +768,7 @@ bool TRiba_form::validate(TForm_item &cf, TToken_string &s)
}
valore = cf.get();
cf.put_paragraph(valore);
return (TRUE);
return true;
}
else
if (code == "_CLI")
@ -819,7 +818,7 @@ bool TRiba_form::validate(TForm_item &cf, TToken_string &s)
valore = rel->curr(pick_normal ? LF_CLIFO : LF_INDSP).get(pick_normal ? CLI_CAPCF : IND_CAP);
}
cf.put_paragraph(valore);
return (TRUE);
return true;
}
return TForm::validate(cf, s);
}
@ -903,17 +902,6 @@ bool TDistinta_form::validate(TForm_item &cf, TToken_string &s)
cf.set(valore);
} else
if (in == "CFPI")
{
valore = _firmrel->curr(LF_ANAG).get("PAIV");
valore.trim();
if (valore.empty())
{
valore = _firmrel->curr(LF_ANAG).get("COFI");
valore.trim();
}
cf.set(valore);
} else
if (in == "CFPI")
{
valore = _firmrel->curr(LF_ANAG).get("PAIV");
valore.trim();
@ -1041,15 +1029,15 @@ char TRiba_file::tipo_incasso(const TRectype& eff) const
const char* TRiba_file::tipo_sequenza(const TRectype& eff) const
{
const char* seq = "RCUR";
const TRectype& mandato = cache().get("&MAN", eff.get(EFF_MANDATO));
if (!mandato.empty())
seq = mandato.get("S6");
const TString& mandato = cache().get("&MAN", eff.get(EFF_MANDATO), "S6");
if (mandato.full())
seq = mandato;
return seq;
}
TDate TRiba_file::data_mandato(const TRectype& eff) const
{
TDate dm = cache().get("&MAN", eff.get(EFF_MANDATO), "D0");
const TDate dm = cache().get("&MAN", eff.get(EFF_MANDATO), "D0");
return dm;
}
@ -1238,12 +1226,9 @@ void TRiba_file::validate(TCursor& cur,TRecord_text &rec, TToken_string &s, TStr
else if (in=="CFPI")
{
valore = clifo_1.get("PAIV");
valore.trim();
if (valore.empty())
{
if (valore.blank())
valore = clifo_1.get("COFI");
valore.trim();
}
valore.trim();
}
else
CHECKS (TRUE,"Sotto-Macro _DEBITORE non definita",(const char *)in);
@ -1375,7 +1360,8 @@ void TRiba_file::validate(TCursor& cur,TRecord_text &rec, TToken_string &s, TStr
else if (code == "_CREDITORID")
{
valore = cur.curr(-403).get("S4");
} else if (code == "_CODMON")
}
else if (code == "_CODMON")
{
valore.format("%c", _codice_moneta); // Fisso 'E'
}

View File

@ -12,4 +12,5 @@ Item_06 = "Stampe di controllo", "ef0 -5", "F"
Item_07 = "Configurazione modulo", "ef0 -8", "F"
Item_08 = "Disposizioni incassi/pagamenti", "ef0 -9", "F"
Item_09 = "Mandati RID", "ef0 -1 &MAN", "F"
Item_10 = "Generazione file SEPA", "ef1 -0", "F"