Corretta maschera provvigioni

git-svn-id: svn://10.65.10.50/branches/R_10_00@22663 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2012-05-23 14:41:39 +00:00
parent 1dbe123220
commit 20c6de0cf3
2 changed files with 9 additions and 3 deletions

View File

@ -197,6 +197,10 @@ BEGIN
CHECKTYPE SEARCH
END
ENDPAGE
TOOLBAR "topbar" 0 0 0 2
BUTTON DLG_OK 9 2
BEGIN
PROMPT -13 -1 ""
@ -319,6 +323,10 @@ BEGIN
ITEM "8|Rapp. int. dir."
ITEM "9|Bonifici"
END
ENDPAGE
TOOLBAR "topbar" 0 0 0 2
BUTTON DLG_OK 10 2
BEGIN

View File

@ -304,7 +304,6 @@ void TRate_doc::set(const TRate_doc& r)
void TRate_doc::set(TToken_string& t)
{
CHECK(t.items() >= 11, "Numero di items non valido");
_anno = t.get_int(0);
_codnum = t.get(1);
_ndoc = t.get_long(2);
@ -336,7 +335,6 @@ int TRata::compare(const TSortable& s) const
void TRata::set(TToken_string& t)
{
CHECK(t.items() == 12, "Troppi pochi elementi nella token string");
_nrata = t.get_int(0);
_datascad = t.get(1);
_tipopag = t.get_int(2);
@ -346,7 +344,7 @@ void TRata::set(TToken_string& t)
_provvmat = t.get(6);
_pagato = t.get(7);
_provvpag = t.get(8);
_saldata = t.get(9)[0] == 'X' ? TRUE : FALSE;
_saldata = t.get_char(9) == 'X' ? TRUE : FALSE;
_tipopagpr = t.get_int(10);
_codval = t.get(11);
}