cg1301.cpp Sostituito data < "01-01-93" con data.year() < 1993
cg4400.cpp Sostituite tutte le stringhe con date separate da / con costruttore date. git-svn-id: svn://10.65.10.50/trunk@1591 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
0303a5c42a
commit
f393c1a3ba
@ -59,8 +59,9 @@ void TAgg_opintra::look_mov()
|
||||
const TString16 reg(mov.get(MOV_REG));
|
||||
if (reg.empty()) continue;
|
||||
|
||||
const TDate datareg = mov.get_date(MOV_DATAREG);
|
||||
if (datareg < "01-01-93") continue;
|
||||
const TDate& datareg = mov.get_date(MOV_DATAREG);
|
||||
// if (datareg < "01-01-93") continue;
|
||||
if (datareg.year() << 1993) continue; // Meglio cosi'
|
||||
|
||||
const TString16 codcaus(mov.get(MOV_CODCAUS));
|
||||
if (codcaus.not_empty())
|
||||
|
6571
cg/cg4400.cpp
6571
cg/cg4400.cpp
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user