diff --git a/ve/ve1200.cpp b/ve/ve1200.cpp index c7bccf5ad..508129e2e 100755 --- a/ve/ve1200.cpp +++ b/ve/ve1200.cpp @@ -274,7 +274,7 @@ int TScoperto_form::print_bolla(const TRectype& dochead, TArray* fatt) { const TRectype& rfatt = (const TRectype&)(*fatt)[r]; const TRectype& fatt_head = head_of(rfatt); - const TDate data_fatt = fatt_head.get(DOC_DATADOC); + const TDate data_fatt = fatt_head.get_date(DOC_DATADOC); const char stato_fatt = fatt_head.get_char(DOC_STATO); if (stato_fatt < _stato_fatture || data_fatt > _data_rif) { @@ -349,7 +349,7 @@ int TScoperto_form::print_bolla(const TRectype& dochead, TArray* fatt) { const TRectype& rfatt = (const TRectype&)(*fatt)[r]; const TRectype& fatt_head = head_of(rfatt); - const TDate data_fatt = fatt_head.get(DOC_DATADOC); + const TDate data_fatt = fatt_head.get_date(DOC_DATADOC); const char stato_fatt = fatt_head.get_char(DOC_STATO); if (stato_fatt < _stato_fatture || data_fatt > _data_rif) { @@ -575,7 +575,7 @@ bool TScoperto_app::trova_bolle_fatturate_dal(TString_array& bolle, TString_arra const TString& codnumfat = curr.get(DOC_CODNUM); if (fatture.find(codnumfat) >= 0) // E' proprio una fattura! { - const TDate data = curr.get(DOC_DATADOC); + const TDate data = curr.get_date(DOC_DATADOC); const char stato = curr.get_char(DOC_STATO); // Devo considerare le fatture dopo la datarif @@ -663,7 +663,7 @@ void TScoperto_app::main_loop() TScoperto_msk msk; while (msk.run() != K_QUIT) { - const TDate datarif = msk.get(F_DATA); + const TDate datarif = msk.get_date(F_DATA); const bool work_on_res = msk.get_bool(F_CONSORD); TSheet_field& s = msk.sfield(F_BOLLE); diff --git a/ve/ve1200a.frm b/ve/ve1200a.frm index 381ca3b78..394cd94ac 100755 --- a/ve/ve1200a.frm +++ b/ve/ve1200a.frm @@ -308,4 +308,3 @@ END END - \ No newline at end of file diff --git a/ve/ve1200a.uml b/ve/ve1200a.uml index 788b8e69e..3c20d29db 100755 --- a/ve/ve1200a.uml +++ b/ve/ve1200a.uml @@ -107,3 +107,4 @@ END ENDPAGE ENDMASK +