Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0007936Openbravo ERP09. Financial managementpublic2009-03-04 11:352009-03-18 11:03
networkb 
vmromanos 
normalminoralways
closedduplicate 
5
2.35MP5 
 
OBPS
Core
No
0007936: Check multiple in Remittance Cancellation/Return form fails if there are more than 20 registers
In form Remittance Cancellation/Return, check multiple fails if there are more than 20 registers trying to be selected at the same time.

In file /ad_forms/RemittanceCancel.html, function cargarDatos executed is:

function cargarDatos(marcar) {
    var radio=document.frmMain.inpcRLId;
    if (marcar==null) marcar=false;
      var frm = document.frmMain;
    if (!radio) return false;
    else if (!radio.length) {
        radio.checked = marcar;
    } else if (radio.length > 20) {
        return submitCommandForm('FIND_SETTLEMENT', true);
    } else {
        var total = radio.length;
        for (var i=0;i<total;i++) {
              radio[i].checked=marcar;
        }
    }
    return true;
}

Command FIND_SETTLEMENT does NOT appear in the /ad_forms/RemittanceCancel.java file, so execution fails.

1. Go to menu item Financial Management || Receivables & Payables || Transactions || Remittance Cancellation/Return
2. Search registers to be cancelled/returned, showing more than 20 registers at the same time (important!!)
3. Click on the multiple check, in order to select all the registers.
4. An error message appears (you're not allowed to view this page..)
No tags attached.
duplicate of defect 0005703 closed dalsasua Remittance Cancellation doesn't allow to check all lines if one of them has multiple lines itself 
Issue History
2009-03-04 11:35networkbNew Issue
2009-03-04 11:35networkbAssigned To => rafaroda
2009-03-04 11:35networkbOBNetwork customer => Yes
2009-03-04 11:35networkbRegression testing => No
2009-03-04 12:24rafarodaAssigned Torafaroda => vmromanos
2009-03-04 15:41vmromanosRelationship addedduplicate of 0005703
2009-03-04 15:41vmromanosStatusnew => closed
2009-03-04 15:41vmromanosDuplicate ID0 => 5703
2009-03-04 15:41vmromanosResolutionopen => duplicate
2009-03-18 11:03anonymoussf_bug_id0 => 2691457

There are no notes attached to this issue.