Patch level : 4.0 451
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 650 git-svn-id: svn://10.65.10.50/trunk@14163 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
738f746953
commit
922adaa976
@ -1813,8 +1813,6 @@ bool TPrimanota_application::link_intra(const TMask& m, const char* action)
|
|||||||
|
|
||||||
const bool bModify = xvt_str_compare_ignoring_case(action, "Modify") == 0;
|
const bool bModify = xvt_str_compare_ignoring_case(action, "Modify") == 0;
|
||||||
|
|
||||||
const bool bModify = xvt_str_compare_ignoring_case(action, "Modify") == 0;
|
|
||||||
|
|
||||||
TFilename intrini;
|
TFilename intrini;
|
||||||
intrini.tempdir();
|
intrini.tempdir();
|
||||||
intrini.add("ActIntra.ini");
|
intrini.add("ActIntra.ini");
|
||||||
|
@ -1051,11 +1051,10 @@ void TInv_cont::crea_record_controllo(TMask& m)
|
|||||||
_tras_file.close();
|
_tras_file.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
const char* TInv_cont::cerca_provincia(const TString& comcf) const
|
void TInv_cont::cerca_provincia(const TString& comcf, TString& provincia) const
|
||||||
{
|
{
|
||||||
TString8 k; k << " |" << comcf;
|
TString8 k; k << " |" << comcf;
|
||||||
return cache().get(LF_COMUNI, k, COM_PROVCOM);
|
provincia = cache().get(LF_COMUNI, k, COM_PROVCOM);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TInv_cont::invio_tempfile(TMask& m)
|
bool TInv_cont::invio_tempfile(TMask& m)
|
||||||
|
@ -137,8 +137,8 @@ public:
|
|||||||
void calcola_totale_record();
|
void calcola_totale_record();
|
||||||
void scrivi_telefono(TString& app);
|
void scrivi_telefono(TString& app);
|
||||||
|
|
||||||
const TString& cerca_provincia(const TString& comcf) const;
|
void cerca_provincia(const TString& comcf, TString& provincia) const;
|
||||||
void cerca_dencom(TString& comcf,TString& dencom);
|
void cerca_dencom(const TString& comcf, TString& dencom) const;
|
||||||
|
|
||||||
static bool setta_maschera_hnd(TMask_field& f, KEY k);
|
static bool setta_maschera_hnd(TMask_field& f, KEY k);
|
||||||
static bool messaggio_hnd (TMask_field& f, KEY k);
|
static bool messaggio_hnd (TMask_field& f, KEY k);
|
||||||
|
@ -701,8 +701,9 @@ bool TInv_cont::invio_clifo()
|
|||||||
str.format("%-.20s", (const char*) localita);
|
str.format("%-.20s", (const char*) localita);
|
||||||
record.overwrite(str,133); //Localita'
|
record.overwrite(str,133); //Localita'
|
||||||
|
|
||||||
const TString4 provincia = cerca_provincia(comcf);
|
TString4 provincia;
|
||||||
|
|
||||||
|
cerca_provincia(comcf, provincia);
|
||||||
str.format("%-2s", (const char*) provincia);
|
str.format("%-2s", (const char*) provincia);
|
||||||
record.overwrite(str,153); //Provincia
|
record.overwrite(str,153); //Provincia
|
||||||
|
|
||||||
|
@ -261,8 +261,8 @@ bool TSaldo::data_limite_bilancio(int bilancio, int g, int c, long s, const TDat
|
|||||||
_saldo -= importo;
|
_saldo -= importo;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __LONGDOUBLE__
|
#ifdef DBG
|
||||||
_saldo.round(TCurrency::get_firm_dec());
|
xvtil_statbar_refresh();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return _movimentato;
|
return _movimentato;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user