Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0022783
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Openbravo ERP] Z. Othersminoralways2013-01-11 13:542013-01-28 16:54
ReportermaiteView Statuspublic 
Assigned Tojonalegriaesarte 
PriorityimmediateResolutionfixedFixed in Version
StatusclosedFix in branchFixed in SCM revision0748646d63bb
ProjectionnoneETAnoneTarget Version3.0MP20
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Review Assigned To
Web browser
ModulesAdvanced Payables and Receivables Mngmt
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0022783: Error in "Generate Payment" process

DescriptionError in "Generate Payment" process
Steps To Reproduce1. Create Payment proposal header
2. Add payment proposal lines until that description of payment which is going to be created is more than 255 characters
3. Run "Generate Payment" process and error will be raised
Proposed SolutionProblem is in "FIN_PaymentProcess.java, in line 219 when description is going to be truncated. Instead of code:
String truncateDescription = (description.length() > 255) ? description
                .substring(0, 252).concat("...").toString() : description.toString();
following code should be set:
String truncateDescription = (description.length() > 255) ? description
                .substring(0, 251).concat("...").toString() : description.toString();
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]

-  Notes
(0055803)
hgbot (developer)
2013-01-24 11:40

Repository: erp/devel/pi
Changeset: 0748646d63bb097a948678d9a4a304a38253855d
Author: Jon Alegría <jon.alegria <at> openbravo.com>
Date: Thu Jan 24 11:40:04 2013 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/0748646d63bb097a948678d9a4a304a38253855d [^]

Fixes issue 0022783: Error in "Generate Payment" process

---
M modules/org.openbravo.advpaymentmngt/src/org/openbravo/advpaymentmngt/process/FIN_PaymentProcess.java
M src-util/modulescript/src/org/openbravo/modulescript/InitializeAcctDimensionsInClient_data.xsql
---
(0055825)
hudsonbot (developer)
2013-01-24 21:40

A changeset related to this issue has been promoted main and to the
Central Repository, after passing a series of tests.

Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/fbbe21bdfeff [^]

Maturity status: Test
(0055919)
maite (developer)
2013-01-28 16:54

verified

- Issue History
Date Modified Username Field Change
2013-01-11 13:54 maite New Issue
2013-01-11 13:54 maite Assigned To => dmiguelez
2013-01-11 13:54 maite Modules => Advanced Payables and Receivables Mngmt
2013-01-11 13:54 maite Triggers an Emergency Pack => No
2013-01-11 13:56 maite Target Version => 3.0MP20
2013-01-11 13:56 maite Priority high => immediate
2013-01-11 13:56 maite Assigned To dmiguelez => jonalegriaesarte
2013-01-11 14:05 maite Issue Monitored: networkb
2013-01-24 11:40 hgbot Checkin
2013-01-24 11:40 hgbot Note Added: 0055803
2013-01-24 11:40 hgbot Status new => resolved
2013-01-24 11:40 hgbot Resolution open => fixed
2013-01-24 11:40 hgbot Fixed in SCM revision => http://code.openbravo.com/erp/devel/pi/rev/0748646d63bb097a948678d9a4a304a38253855d [^]
2013-01-24 21:40 hudsonbot Checkin
2013-01-24 21:40 hudsonbot Note Added: 0055825
2013-01-28 16:54 maite Note Added: 0055919
2013-01-28 16:54 maite Status resolved => closed


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker