Cambiato l'utilizzo dei separatori in TToken_string delle tabelle

LIA e PIM. Ora e' ! e non piu' |. (Vedi anche apposita conversione).


git-svn-id: svn://10.65.10.50/trunk@2769 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
angelo 1996-04-24 16:58:03 +00:00
parent e7e6d3d476
commit 2ba7d017b9

View File

@ -1155,7 +1155,7 @@ void CG4400_application::calcola_progressivi()
//se il registro e' corrispettivi l'imponibile e l'iva li trovo in S2
if (_corrispettivi)
{
TToken_string cs (pim.get("S2"));
TToken_string cs (pim.get("S2"),'!');
impo = cs.get(0);
impos = cs.get(1);
}
@ -1165,7 +1165,7 @@ void CG4400_application::calcola_progressivi()
impo = pim.get_real("R11");
impos = pim.get_real("R12");
}
TToken_string fatt_rit (pim.get("S1")); //e' sempre un acquisto
TToken_string fatt_rit (pim.get("S1"),'!'); //e' sempre un acquisto
real im (fatt_rit.get(0));
real is (fatt_rit.get(1));
impo += im;
@ -1209,7 +1209,7 @@ void CG4400_application::calcola_progressivi()
//se il registro e' corrispettivi l'imponibile e l'iva li trovo in S2
if (_corrispettivi)
{
TToken_string cs (pim.get("S2"));
TToken_string cs (pim.get("S2"),'!');
impo = cs.get(0);
impos = cs.get(1);
}
@ -1219,7 +1219,7 @@ void CG4400_application::calcola_progressivi()
impo = pim.get_real("R11");
impos = pim.get_real("R12");
}
TToken_string fatt_rit (pim.get("S1"));
TToken_string fatt_rit (pim.get("S1"),'!');
real im (fatt_rit.get(0));
real is (fatt_rit.get(1));
impo += im;