Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0023351Openbravo ERP09. Financial managementpublic2013-03-20 12:452013-03-21 10:20
ngarcia 
jonalegriaesarte 
urgentmajoralways
closedduplicate 
5
 
3.0MP223.0MP22 
ngarcia
Core
No
0023351: Bank Statement with a line without a BP defined could not be imported
Bank Statement with a line without a BP defined could not be imported
As system admin role:
   Install the Cuaderno 43 module
As group admin role:
   Try to import a bank statement file without a BP name defined in the concept line (23...)
   The file is not imported but the application does not show any error
In the FIN_BankStatementImport.java file, when calling the matchPreviousBSL() function from the saveFINBankStatementLines() with the business partner name as "", it returns null.

Change the result returned when the partnername is empty

    if (partnername == null || "".equals(partnername.trim())) {
      return null;
    }

with

    if (partnername == null || "".equals(partnername.trim())) {
      return result;
    }
No tags attached.
duplicate of defect 0022891 closed ioritzCia Modules Impossible to import the bank statement 
Issue History
2013-03-20 12:45ngarciaNew Issue
2013-03-20 12:45ngarciaAssigned To => dmiguelez
2013-03-20 12:45ngarciaModules => Core
2013-03-20 12:45ngarciaResolution time => 1366668000
2013-03-20 12:45ngarciaTriggers an Emergency Pack => No
2013-03-20 12:45ngarciaIssue Monitored: networkb
2013-03-20 20:39dmiguelezAssigned Todmiguelez => jonalegriaesarte
2013-03-20 23:52hgbotCheckin
2013-03-20 23:52hgbotNote Added: 0057341
2013-03-20 23:52hgbotStatusnew => resolved
2013-03-20 23:52hgbotResolutionopen => fixed
2013-03-20 23:52hgbotFixed in SCM revision => http://code.openbravo.com/erp/devel/pi/rev/a2ba86ffe87050f4ef1bc6437c936f9eb59161f1 [^]
2013-03-21 10:13hgbotCheckin
2013-03-21 10:13hgbotNote Added: 0057346
2013-03-21 10:17ngarciaStatusresolved => new
2013-03-21 10:17ngarciaResolutionfixed => open
2013-03-21 10:17ngarciaRelationship addedduplicate of 0022891
2013-03-21 10:18ngarciaStatusnew => scheduled
2013-03-21 10:18ngarciafix_in_branch => pi
2013-03-21 10:20ngarciaReview Assigned To => ngarcia
2013-03-21 10:20ngarciaStatusscheduled => closed
2013-03-21 10:20ngarciaResolutionopen => duplicate
2013-03-21 10:20ngarciaFixed in Version => 3.0MP22

Notes
(0057341)
hgbot   
2013-03-20 23:52   
Repository: erp/devel/pi
Changeset: a2ba86ffe87050f4ef1bc6437c936f9eb59161f1
Author: Jon Alegría <jon.alegria <at> openbravo.com>
Date: Wed Mar 20 23:51:45 2013 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/a2ba86ffe87050f4ef1bc6437c936f9eb59161f1 [^]

Fixes issue 0023351: Bank Statement with a line without a BP defined could not
be imported

---
M modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/utility/FIN_BankStatementImport.java
---
(0057346)
hgbot   
2013-03-21 10:13   
Repository: erp/devel/pi
Changeset: a5faac7048526652685a549beec384e14a73c3fb
Author: Jon Alegría <jon.alegria <at> openbravo.com>
Date: Thu Mar 21 10:12:22 2013 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/a5faac7048526652685a549beec384e14a73c3fb [^]

Backout issue 0023351: Bank Statement with a line without a BP defined could
not be imported

---
M modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/utility/FIN_BankStatementImport.java
---