Patch level : 10.0 patch ???

Files correlati     : lv3
Ricompilazione Demo : [ ]
Commento            :
Caricamento dotazioni


git-svn-id: svn://10.65.10.50/branches/R_10_00@21392 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca83 2011-01-03 16:58:09 +00:00
parent 2252ae709c
commit d4f9e4726f
3 changed files with 31 additions and 4 deletions

View File

@ -548,16 +548,27 @@ bool TGestione_bolle_msk::lv_bolla_handler(TMask_field& f, KEY k)
}
//gestione campi dotazione odierna e dotazione temporanea
TArticolo_lavanderie& artrec = cached_article_laundry(codart, 'C', codcf, indsped);
if(codart.left(1) == "N")
int cazzone = 1;
TArticolo_lavanderie& artrec = cached_article_laundry(codart, 'C', codcf, indsped);
//fisso l'anno esercizio
TEsercizi_contabili& esc = esercizi();
const int last_esc = esc.last();
//estraggo il record corrispondente su LF_CLIFOGIAC
const TRecmag_lavanderie& reclav = artrec.find_rec(last_esc);
const TRecmag_lavanderie& reclav = artrec.find_rec(last_esc);
real dotod = reclav.get_real(CLIFOGIAC_DOTOD);
real dotmp = reclav.get_real(CLIFOGIAC_DOTTM);
if(reclav.empty())
{
TArticolo_lavanderie& artrec1 = cached_article_laundry(codart, 'C', codcf, 0);
const TRecmag_lavanderie& reclav1 = artrec1.find_rec(last_esc);
dotod = reclav1.get_real(CLIFOGIAC_DOTOD);
dotmp = reclav1.get_real(CLIFOGIAC_DOTTM);
}
rdoc.put("DOTOD", dotod);
rdoc.put("DOTMP", dotmp);

View File

@ -554,9 +554,17 @@ bool TGestione_buoni_msk::set_righe_buono_handler(TMask_field& f, KEY k)
//estraggo il record corrispondente su LF_CLIFOGIAC
const TRecmag_lavanderie& reclav = artrec.find_rec(last_esc);
real dotod = reclav.get_real(CLIFOGIAC_DOTOD);
real dotod = reclav.get_real(CLIFOGIAC_DOTOD);
real dotmp = reclav.get_real(CLIFOGIAC_DOTTM);
if(reclav.empty())
{
TArticolo_lavanderie& artrec1 = cached_article_laundry(codart, 'C', codcf, 0);
const TRecmag_lavanderie& reclav1 = artrec1.find_rec(last_esc);
dotod = reclav1.get_real(CLIFOGIAC_DOTOD);
dotmp = reclav1.get_real(CLIFOGIAC_DOTTM);
}
rdoc.put("DOTOD", dotod);
rdoc.put("DOTMP", dotmp);

View File

@ -1665,6 +1665,14 @@ real TGiac_per_cli::giac_att(TRiga_documento& rdoc, bool odierna)
real dotod = reclav.get_real(CLIFOGIAC_DOTOD);
real dotmp = reclav.get_real(CLIFOGIAC_DOTTM);
if(reclav.empty())
{
TArticolo_lavanderie& artrec1 = cached_article_laundry(codart, 'C', doc.get_long(DOC_CODCF), 0);
const TRecmag_lavanderie& reclav1 = artrec1.find_rec(last_esc);
dotod = reclav1.get_real(CLIFOGIAC_DOTOD);
dotmp = reclav1.get_real(CLIFOGIAC_DOTTM);
}
real giac = odierna ? dotod : dotmp;
real saldo;