Hello,
When I create a record on the form in the datasource is called the following methods:
Form — Datasource — create ()
Form — Datasource — initValue ()
Table — initValue ()
Form — Datasource — active ()
But in the create method of the datasource InventJournalTrans of the form InventJournalCountTransfer I have the following code:
void create(boolean append = false) { ; journalFormTrans.datasourceCreatePre(); super(append); }
and in the super(append) I have one value in the datasource InventJournalTrans changed and I can't find where it's happening. I tried to go into super(append) and some methods of the table InventJournalTrans are launched but nowhere there I have found needed value changing. So the question is where super(append) leads? To which tableor datasource method?
Thank you.