Patch level : 10.0
Files correlati : ve2 Ricompilazione Demo : [ ] Commento : Migliorata gestione campi chiave con identificatore nullo git-svn-id: svn://10.65.10.50/trunk@19490 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
a6f421d6e1
commit
12df1c7a44
@ -214,16 +214,19 @@ bool TRelation_application::destroy()
|
||||
void TRelation_application::set_fixed()
|
||||
{
|
||||
TToken_string s(256, '=');
|
||||
for (const char* f = _fixed.get(0); f && *f; f = _fixed.get())
|
||||
FOR_EACH_TOKEN(_fixed, f)
|
||||
{
|
||||
s = f;
|
||||
const int id = s.get_int(0);
|
||||
s = s.get();
|
||||
if (s.not_empty())
|
||||
_mask->set(id, s);
|
||||
|
||||
if (_lnflag < 2)
|
||||
_mask->disable(id);
|
||||
const short id = s.get_int(0);
|
||||
if (id > 0 && _mask->id2pos(id) >= 0)
|
||||
{
|
||||
s = s.get();
|
||||
if (s.not_empty())
|
||||
_mask->set(id, s);
|
||||
|
||||
if (_lnflag < 2)
|
||||
_mask->disable(id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1569,7 +1572,7 @@ bool TRelation_application::filter()
|
||||
while (id > 0)
|
||||
{
|
||||
_search_id = id;
|
||||
TEdit_field& f = (TEdit_field&)_mask->field(id);
|
||||
TEdit_field& f = _mask->efield(id);
|
||||
TCursor* cur = f.browse()->cursor();
|
||||
TRectype& rec = cur->curr();
|
||||
rec.zero();
|
||||
@ -1681,7 +1684,7 @@ bool TRelation_application::filter()
|
||||
else
|
||||
if (v) val = *v;
|
||||
|
||||
if (v)
|
||||
if (v && f.dlg() > 0)
|
||||
{
|
||||
t.format("%d=", f.dlg());
|
||||
val.insert(t, 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user