Показать сообщение отдельно
Старый 04.04.2012, 11:05   #3  
Andrux is offline
Andrux
Участник
Axapta Retail User
 
263 / 17 (1) ++
Регистрация: 29.05.2007
В АХ2009 локализаторы уже внесли изменения в этот метод

X++:
public void calcCrediting()
// </GEEU>
{
    /* <SYS>
    this.Crediting = (this.AmountMST < 0 && this.Correct == 0) ||
                     (this.AmountMST > 0 && this.Correct == 1);
                     </SYS> */
    // <GEEU>
    Amount tmpAmount = this.AmountCur ? this.AmountCur :
                       this.AmountMST ? this.AmountMST :
                       this.AmountMSTSecond;

    this.Crediting = (tmpAmount < 0 && this.Correct == 0) ||
                     (tmpAmount > 0 && this.Correct == 1);
                     // </GEEU>
}