Patch level : 2.0 660

Files correlati     : ve0 ve6
Ricompilazione Demo : [ ]
Commento            :

Attesa segnalazione ufficiale


git-svn-id: svn://10.65.10.50/trunk@11669 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2003-12-15 16:38:30 +00:00
parent dda501b599
commit 55f544991c
2 changed files with 9 additions and 9 deletions

View File

@ -397,9 +397,9 @@ BEGIN
INPUT CODTAB F_CATCONV
DISPLAY "Codice" CODTAB
DISPLAY "Descrizione@50" S0
DISPLAY "Gruppo" S1
DISPLAY "Conto" S2
DISPLAY "Sottoconto" S3
DISPLAY "Gruppo" I0
DISPLAY "Conto" I1
DISPLAY "Sottoconto" I2
OUTPUT F_CATCONV CODTAB
OUTPUT F_CATCONV1 S0
CHECKTYPE NORMAL
@ -413,9 +413,9 @@ BEGIN
INPUT S0 F_CATCONV1
DISPLAY "Descrizione@50" S0
DISPLAY "Codice" CODTAB
DISPLAY "Gruppo" S1
DISPLAY "Conto" S2
DISPLAY "Sottoconto" S3
DISPLAY "Gruppo" I0
DISPLAY "Conto" I1
DISPLAY "Sottoconto" I2
COPY OUTPUT F_CATCONV
END

View File

@ -1683,9 +1683,9 @@ error_type TContabilizzazione::search_costo_ricavo(TBill& conto, const TRiga_doc
t->put("CODTAB",_anamag->get(is_cli ? ANAMAG_CATCONV : ANAMAG_CATCONA));
if (t->read() == NOERR)
{
gr = atoi(t->get("S1"));
co = atoi(t->get("S2"));
so = atol(t->get("S3"));
gr = atoi(t->get("I0"));
co = atoi(t->get("I1"));
so = atol(t->get("I2"));
conto.set(gr,co,so);
}
}