у меня есть в update свои вставки, но они не могут влиять на это
вот у меня такой update
но может он не верный?
void update()
{
CustTable this_Orig = this.orig();
ttsbegin;
this.setNameAlias();
super();
this.setAccountOnVend(this_Orig);
if (this_Orig.custGroup != this.custGroup)
{
ForecastSales::setCustGroupId(this.accountNum,
this_Orig.custGroup,
this.custGroup);
/* Sales Force Automation addition */
smmTransLog::InitTrans(this, smmLogAction::update);
/* Sales Force Automation addition end */
}
// моя строка.
Dimensions::updateCustTable(this);
ttscommit;
}
|