AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
DAX
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 27.08.2012, 21:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,475 / 846 (79) +++++++
Регистрация: 28.10.2006
emeadaxsupport: AX for Retail 2012: Adding manager approval to custom operations
Источник: http://blogs.msdn.com/b/axsupport/ar...perations.aspx
==============

There are a number of places in AX for Retail POS where manager approval is needed to perform a task.  You may have noticed one of these when trying to exit the application.  You can tell that it’s a manager login by the slightly different appearance:

 

  

   As a developer, there may be other areas in the application that you may want to ask for manager approval.  This could be your own procedure (a blank operation) or maybe an existing procedure that is in a customizable plug-in.

Here is one example of functionality that doesn’t have manager approval but could probably use it:  maximum discount.  Suppose you have your non-managers set up with a maximum line discount of 5%:



 

If the user attempts to add a larger discount, this message is shown (as expected):



 

However, there is no great option at this point if we want to give the customer a larger discount.  If a manager has a higher limit, the workaround is to suspend the transaction, have the manager log in and resume the transaction, add the discount, re-suspend the transaction, and then have the cashier resume the transaction with the new discount applied.  It would be better if the POS could prompt the user for manager credentials to override.

The logic that enforces the maximum discount just happens to be in the Discount service (plug-in) which means that it is customizable.  There are four methods that enforce the various discounts:  AuthorizeLineDiscountAmount(), AuthorizeLineDiscountPercent(), AuthorizeTotalDiscountAmount(), and AuthorizeTotalDiscountPercent().  The logic is similar in each;  I’ll use AuthorizeLineDiscountPercent() for this example.

The code snippet blow shows the existing logic.  Note how the percentage entered is compared to the max percentage for the user; if it is greater, the message is given and the authorization fails:

1: if (discountItem.Percentage > 100m || discountItem.Percentage > maximumDiscountPct) 2: { 3: string message = string.Format(LSRetailPosis.ApplicationLocalizer.Language.Translate(3183), maximumDiscountPct.ToString("n2")); 4: //The discount percentage is to high. The limit is xxx %. 5: using (frmMessage dialog = new frmMessage(message, System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information)) 6: { 7: this.Application.ApplicationFramework.POSShowForm(dialog); 8: } 9: 10: returnValue = false; 11: } 12:  

Instead of just failing, we could alternatively call the manager access logon window instead.  Since this window gets called frequently in the product, it is designed to be simple to call.  We can add this into the existing logic pretty easily:

 

1: if (discountItem.Percentage > 100m || discountItem.Percentage > maximumDiscountPct) 2: { 3: using (LSRetailPosis.POSProcesses.WinFormsTouch.frmManagerAccess frmManAcc 4: = new LSRetailPosis.POSProcesses.WinFormsTouch.frmManagerAccess(0)) 5: { 6: LSRetailPosis.POSProcesses.POSFormsManager.ShowPOSForm(frmManAcc); 7: 8: if (frmManAcc.DialogResult == DialogResult.OK) 9: { 10: // Manager auth was successful 11: returnValue = true; 12: } 13: else 14: { 15: // Failed. Use original logic 16: string message = string.Format(LSRetailPosis.ApplicationLocalizer.Language.Translate(3183), maximumDiscountPct.ToString("n2")); 17: //The discount percentage is to high. The limit is xxx %. 18: using (frmMessage dialog = new frmMessage(message, System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information)) 19: { 20: this.Application.ApplicationFramework.POSShowForm(dialog); 21: } 22: returnValue = false; 23: } 24: } 25: } 26:  

Note how the frmManagerAccess object does most of the work for us.  We create an instance of the object with a zero for the operation:  instead of asking about a specific operation (void transaction, X-report printing, etc.) we’re just asking if the user has the Manager privileges permission.  After that we send the object to the ShowPOSForm() method and then check the resulting DialogResult property.  If the manager logon was successful and the resulting user indeed had manager privileges, the DialogResult is “OK” and we can go ahead an authorize the larger discount.  Otherwise, we just show the original message and disallow the discount.

Note that this does not actually check the manager’s discount limit.  A limitation of the frmManagerAccess object is that it does not expose the operator ID that was used to log on so there is no way of knowing which manager approved the discount.  But there may be other ways for you to fine-tune the limits.

There are probably many other places that you could add a manager challenge in your customizations.  Feel free to let the community know your ideas by using the comments section below.

Note:  This article was written with AX for Retail 2012 in mind but I believe a similar technique would work in 2009 as well.




Источник: http://blogs.msdn.com/b/axsupport/ar...perations.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
emeadaxsupport: AX for Retail 2012: Working with Custom Fields Blog bot DAX Blogs 0 07.08.2012 07:12
dynamicsaxtraining: Purchase Blog bot DAX Blogs 0 11.03.2012 05:25
emeadaxsupport: New Content for Microsoft Dynamics AX 2012 : October 2011 Blog bot DAX Blogs 0 27.10.2011 17:11
axinthefield: Dynamics AX Event IDs Blog bot DAX Blogs 0 01.03.2011 22:11
daxdilip: Whats New in Dynamics AX 2012 (A brief extract from the recently held Tech Conf.) Blog bot DAX Blogs 7 31.01.2011 12:35

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 05:16.
Powered by vBulletin® v3.8.5. Перевод: zCarot
Контактная информация, Реклама.