![]() |
#1 |
Участник
|
Dynamics AX Sustained Engineering: Rounding concerns using Breakdown of Voucher in AX 4.0 SP2
Источник: http://blogs.technet.com/b/dynamicsa...x-4-0-sp2.aspx
============== Problem: When you enter an AP invoice with multiple line items and choose Breakdown of voucher to split the posting into several lines the amount of lines which have not been selected can be changed. Resolution: Make the following changes to \Classes\LedgerJournalSplitPosting\updateLedgerJournal From: ... AmountCur amountToAllocate; AmountCur highestAmountCur = -1; RecID ledgerJournalTransRecID; ... and ... while select tmpLedgerJournalSplitHeader { totalAmountCur = 0; while select tmpLedgerJournalSplitLines ... To: ... AmountCur amountToAllocate; AmountCur highestAmountCur; RecID ledgerJournalTransRecID; ... ... while select tmpLedgerJournalSplitHeader { totalAmountCur = 0; highestAmountCur =0; while select tmpLedgerJournalSplitLines ... Источник: http://blogs.technet.com/b/dynamicsa...x-4-0-sp2.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
|
|