Question

How to enable Download PDF button for payment in the Hold status?

Answer

The button is disabled in the default customization. The following actions should be made to enable it:

  1. Create new customization file (if it does not exist):

    /usr/local/bm/conf/wnd/BM/customization/customization/ARDoc_PADetailMyWin.xml
    
  2. Add the following lines:

    <window id="ARDoc_PADetailMyWin">
    <actions>
    <constraint id="hideDownloadPDF" element="download" >
    <enable> CanSendNotification "==" "0" </enable>
    </constraint>
    <constraint id="disDownloadPDF" element="download">
    <hide> Status "==" "2000" </hide>
    <hide> Status "==" "2200" </hide>
    <hide> Status "==" "2300" </hide>
    </constraint>
    </actions>
    </window>
    
  3. Restart PBA UI:

    /etc/init.d/pba restart www
    

Internal content