Patch level : 10.0 286

Files correlati     : ve0.exe pe0.exe
Ricompilazione Demo : [ ]
Commento            :

Preventivi/incarichi (Dinamica)


git-svn-id: svn://10.65.10.50/trunk@18761 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 2009-04-21 21:23:10 +00:00
parent 854ffdf4f6
commit 33d507ab62
2 changed files with 3 additions and 2 deletions

View File

@ -589,7 +589,7 @@ bool TCopia_documento::elabora(TLista_documenti& doc_in, TLista_documenti& doc_o
pre_process_input(doc_in);
for (int d = 0; d < doc_in.items(); d++)
{
const TDocumento& doc_src = doc_in[d];
TDocumento& doc_src = doc_in[d];
if (doc_out.items() <= d)
{
const TString4 codnum = codice_numerazione_finale();
@ -610,6 +610,7 @@ bool TCopia_documento::elabora(TLista_documenti& doc_in, TLista_documenti& doc_o
if (data_elab.ok())
doc_dest.put(DOC_DATADOC, data_elab);
doc_src.put(DOC_STATO, stato_finale_doc_iniziale());
}
post_process_input(doc_in);
post_process_output(doc_out);

View File

@ -1741,7 +1741,7 @@ void TDocumento_mask::highlight()
{
TSheet_field& sf = sfield(F_SHEET);
FOR_EACH_SHEET_ROW(sf, i, r)
highlight_row(i, false, false);
highlight_row(i, COLOR_INVALID, COLOR_INVALID, false, false);
sf.force_update();
}