Patch level : 2.2
Files correlati : ca3 Ricompilazione Demo : [ ] Commento : Sistemato errore di sintassi git-svn-id: svn://10.65.10.50/trunk@13839 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
624fa873f0
commit
83a9d5ba02
@ -341,7 +341,7 @@ int TMovanal_msk::get_constant_columns(TToken_string& tok) const
|
|||||||
if (i >= 2)
|
if (i >= 2)
|
||||||
{
|
{
|
||||||
const TString campione = sf.row(0).get(i);
|
const TString campione = sf.row(0).get(i);
|
||||||
if (!campione.blank())
|
if (campione.full())
|
||||||
{
|
{
|
||||||
for (int j = items-1; j > 0; j--)
|
for (int j = items-1; j > 0; j--)
|
||||||
{
|
{
|
||||||
|
@ -561,13 +561,12 @@ void TPag_per_cms_recordset::find_commesse_cg(const TRectype& mov)
|
|||||||
//deve aggiungere ora al file temporaneo il record
|
//deve aggiungere ora al file temporaneo il record
|
||||||
// campi del pagamento che vanno spediti nel file temporaneo
|
// campi del pagamento che vanno spediti nel file temporaneo
|
||||||
//codice fornitore e descrizione
|
//codice fornitore e descrizione
|
||||||
const TString8 codforn = mov.get(MOV_CODCF);
|
const long codforn = mov.get_long(MOV_CODCF);
|
||||||
tmpcurr.put("CODFORN", codforn);
|
tmpcurr.put("CODFORN", codforn);
|
||||||
TString16 keyclifo;
|
TString16 keyclifo;
|
||||||
keyclifo.format("%s|%d", "F", codforn);
|
keyclifo.format("F|%ld", codforn);
|
||||||
const TRectype& rec_clifo = cache().get(LF_CLIFO, keyclifo);
|
const TRectype& rec_clifo = cache().get(LF_CLIFO, keyclifo);
|
||||||
TString80 desforn = rec_clifo.get(CLI_RAGSOC);
|
tmpcurr.put("DESFORN", rec_clifo.get(CLI_RAGSOC));
|
||||||
tmpcurr.put("DESFORN", desforn);
|
|
||||||
|
|
||||||
//nreg,data pagamento,descrizione pagamento
|
//nreg,data pagamento,descrizione pagamento
|
||||||
tmpcurr.put("NREG", numregcg);
|
tmpcurr.put("NREG", numregcg);
|
||||||
@ -589,7 +588,6 @@ void TPag_per_cms_recordset::find_commesse_cg(const TRectype& mov)
|
|||||||
|
|
||||||
//e finalmente aggiunge il record al file temporaneo
|
//e finalmente aggiunge il record al file temporaneo
|
||||||
_tmp->write();
|
_tmp->write();
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} //for(j<anal_rows...
|
} //for(j<anal_rows...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user