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

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0027351
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[Retail Modules] Web POScriticalalways2014-08-17 00:152014-08-24 15:47
ReporterOrekariaView Statuspublic 
Assigned ToOrekaria 
PrioritynormalResolutionfixedFixed in VersionRR14Q4
StatusclosedFix in branchpiFixed in SCM revisiona2f9c55b5ca9
ProjectionnoneETAnoneTarget VersionRR14Q4
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Review Assigned Tomtaal
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0027351: Stabilization: The globalResources in the Component Providers are being created hundreds of times and the code is thread unsafe

DescriptionStabilization: The globalResources in the Component Providers are being created hundreds of times and the code is thread unsafe
Steps To ReproduceIn the MobileCoreComponentProvider.java add this code at the end of the file:

      System.out.println("checking globalResources.size: " + globalResources.size());

      return globalResources;
    }
  }

Open the WebPOS
Verify the System.out.output in the tomcat console log
Verify that the count should be = 40, but sometimes is more or less (thread unsafe)
Verify that the very same array is created over and over

Add this same System.out.println line to other <module>ComponentProvider.java
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
depends on defect 0027348RR14Q4 closedOrekaria Stabilization: Refactor the MobileCoreComponentProvider for better readability and more atomic commits 
blocks feature request 0027329 newRetail Stabilization: Overhaul the loading process (since the url is entered until the webpos has loaded) 

-  Notes
(0069410)
hgbot (developer)
2014-08-17 00:25

Repository: erp/pmods/org.openbravo.mobile.core
Changeset: 64b43ec6b05c4ac2f611446513d888f110c9b2d7
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 00:25:34 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64b43ec6b05c4ac2f611446513d888f110c9b2d7 [^]

Fixes issue 27351: When calling the 'getGlobalComponentResources' method of the 'MobileCoreComponentProvider' class, the array 'globalResources' will not be recreated if it is not necessary

---
M src/org/openbravo/mobile/core/MobileCoreComponentProvider.java
---
(0069422)
hgbot (developer)
2014-08-17 15:09

Repository: erp/pmods/org.openbravo.mobile.core
Changeset: 6a6753151bd4f219ed85b64c7b590c84e1955f1f
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 15:09:18 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a6753151bd4f219ed85b64c7b590c84e1955f1f [^]

Fixes issue 27351: 'getGlobalComponentResources' have to be set as synchronized because multiple calls were corrupting the globalResources array
Mark variables as final is not necessary but a nice plus

---
M src/org/openbravo/mobile/core/MobileCoreComponentProvider.java
---
(0069423)
hgbot (developer)
2014-08-17 15:14

Repository: erp/pmods/org.openbravo.retail.posterminal
Changeset: ac81e375391e199954d7316baecd60a6948fc927
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 15:14:47 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/ac81e375391e199954d7316baecd60a6948fc927 [^]

Fixes issue 27351: When calling the 'getGlobalComponentResources' method of the 'OBPOSComponentProvider' class, the array 'globalResources' will not be recreated if it is not necessary
- finals is a bonus

---
M src/org/openbravo/retail/posterminal/OBPOSComponentProvider.java
---
(0069429)
hgbot (developer)
2014-08-17 17:09

Repository: erp/pmods/org.openbravo.retail.returns
Changeset: fcc0100ea23be8e37f663bd23cfdf1c10968e69f
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 17:09:48 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/fcc0100ea23be8e37f663bd23cfdf1c10968e69f [^]

Fixes issue 27351: 'getGlobalComponentResources' have to be set as synchronized because multiple calls were corrupting the globalResources array
Marking variables as final was not necessary but a nice plus

---
M src/org/openbravo/retail/returns/ReturnsComponentProvider.java
---
(0069430)
hgbot (developer)
2014-08-17 17:10

Repository: erp/pmods/org.openbravo.retail.discounts
Changeset: 3dcc63c26236df1ff330fdcef3fe670058e796ba
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 17:10:25 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/3dcc63c26236df1ff330fdcef3fe670058e796ba [^]

Fixes issue 27351: 'getGlobalComponentResources' have to be set as synchronized because multiple calls were corrupting the globalResources array
Marking variables as final was not necessary but a nice plus

---
M src/org/openbravo/retail/discounts/DiscountsComponentProvider.java
---
(0069433)
hgbot (developer)
2014-08-17 17:35

Repository: erp/pmods/org.openbravo.mobile.core
Changeset: 2dfd7f540c214d52f5750e89c29a40d5c150b1cf
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 17:34:33 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/2dfd7f540c214d52f5750e89c29a40d5c150b1cf [^]

Fixes issue 27351: The null check is no longer needed

---
M src/org/openbravo/mobile/core/MobileCoreComponentProvider.java
---
(0069434)
hgbot (developer)
2014-08-17 17:37

Repository: erp/pmods/org.openbravo.retail.returns
Changeset: 496bd0747a9781cbe66d59a908f6c667abf4a7a4
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 17:37:09 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/496bd0747a9781cbe66d59a908f6c667abf4a7a4 [^]

Fixes issue 27351: The null check is no longer needed (returns)

---
M src/org/openbravo/retail/returns/ReturnsComponentProvider.java
---
(0069435)
hgbot (developer)
2014-08-17 17:37

Repository: erp/pmods/org.openbravo.retail.discounts
Changeset: 5d43f620e20693562edf45bc3f8238f246d88949
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 17:37:39 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/5d43f620e20693562edf45bc3f8238f246d88949 [^]

Fixes issue 27351: The null check is no longer needed (Discounts)

---
M src/org/openbravo/retail/discounts/DiscountsComponentProvider.java
---
(0069437)
hgbot (developer)
2014-08-17 18:01

Repository: erp/devel/pi
Changeset: 87b13b8ceac8a153efaaecae2cc6eb08a4203593
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sun Aug 17 18:01:11 2014 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/87b13b8ceac8a153efaaecae2cc6eb08a4203593 [^]

Fixes issue 27351: 'getGlobalComponentResources' have to be set as synchronized because multiple calls were corrupting the globalResources array
Marking variables as final was not necessary but a nice plus
(client.kernel)
(service.datasource)

---
M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/KernelComponentProvider.java
M modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/DataSourceComponentProvider.java
---
(0069453)
hudsonbot (developer)
2014-08-18 01:58

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/ed428d44c18c [^]
Maturity status: Test
(0069602)
mtaal (manager)
2014-08-22 10:28

I think the java code should be different:
- make the globalresources member private and place the declaration in the top of the class after the static members/methods
- initialize the globalresources with null, don't make it final

then make the getGlobalComponentResources synchronized and structure it like this:
public List<ComponentResource> getGlobalComponentResources() {
 if (globalResources != null) {
 return globalResources;
}
globalResources = new ArrayList<ComponentResource>();

gr. Martin
(0069631)
hgbot (developer)
2014-08-23 01:34

Repository: erp/devel/pi
Changeset: daa69c127184d785356a2268620511c2ae0a0e56
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:31:40 2014 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/daa69c127184d785356a2268620511c2ae0a0e56 [^]

Fixes issue 27351: refactor (kernel, datasource)

---
M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/KernelComponentProvider.java
M modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/DataSourceComponentProvider.java
---
(0069632)
hgbot (developer)
2014-08-23 01:34

Repository: erp/pmods/org.openbravo.mobile.core
Changeset: b964170c9118836cc6c0589888b460653aedfcb0
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:32:14 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/b964170c9118836cc6c0589888b460653aedfcb0 [^]

Fixes issue 27351: refactor (MobileCore)

---
M src/org/openbravo/mobile/core/MobileCoreComponentProvider.java
---
(0069633)
hgbot (developer)
2014-08-23 01:34

Repository: erp/pmods/org.openbravo.retail.posterminal
Changeset: 2745e49351f0f65ed1f8d983eabe3fdcc4ef15c2
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:32:39 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/2745e49351f0f65ed1f8d983eabe3fdcc4ef15c2 [^]

Fixes issue 27351: refactor (posterminal)

---
M src/org/openbravo/retail/posterminal/OBPOSComponentProvider.java
---
(0069634)
hgbot (developer)
2014-08-23 01:34

Repository: erp/pmods/org.openbravo.retail.returns
Changeset: 061bc6480e561ca812c44e6ff8f3a88663570c39
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:33:06 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/061bc6480e561ca812c44e6ff8f3a88663570c39 [^]

Fixes issue 27351: refactor (Returns)

---
M src/org/openbravo/retail/returns/ReturnsComponentProvider.java
---
(0069635)
hgbot (developer)
2014-08-23 01:35

Repository: erp/pmods/org.openbravo.retail.discounts
Changeset: 4a6f75a6c3a9c7ea585ad5b9934bf3619f6f51b0
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:33:21 2014 +0200
URL: http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/4a6f75a6c3a9c7ea585ad5b9934bf3619f6f51b0 [^]

Fixes issue 27351: refactor (Discounts)

---
M src/org/openbravo/retail/discounts/DiscountsComponentProvider.java
---
(0069636)
hgbot (developer)
2014-08-23 09:08

Repository: erp/devel/pi
Changeset: 077fca7b3c709f3447fe0fab9d0ad1a9d37b7c6b
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 09:05:26 2014 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/077fca7b3c709f3447fe0fab9d0ad1a9d37b7c6b [^]

Issue 27351. Backed out rev. 24307, changeset: daa69c127184
refactor (kernel, datasource)
may the changeset not pass the tests

---
M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/KernelComponentProvider.java
M modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/DataSourceComponentProvider.java
---
(0069638)
mtaal (manager)
2014-08-23 10:50

Reviewed
(0069639)
hgbot (developer)
2014-08-23 10:52

Repository: erp/devel/pi
Changeset: a2f9c55b5ca95422e3580ec97b08b1d10ff744ac
Author: Rafa Alonso <rafael.alonso <at> openbravo.com>
Date: Sat Aug 23 01:31:40 2014 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/a2f9c55b5ca95422e3580ec97b08b1d10ff744ac [^]

Fixes issue 27351: refactor (kernel, datasource) (II)

---
M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/KernelComponentProvider.java
M modules/org.openbravo.service.datasource/src/org/openbravo/service/datasource/DataSourceComponentProvider.java
---
(0069648)
hudsonbot (developer)
2014-08-23 16:30

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/81b875753850 [^]
Maturity status: Test
(0069649)
hudsonbot (developer)
2014-08-23 16:30

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/81b875753850 [^]
Maturity status: Test
(0069655)
mtaal (manager)
2014-08-23 23:47

Reviewed
(0069668)
hudsonbot (developer)
2014-08-24 15:47

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/0e088398c072 [^]
Maturity status: Test

- Issue History
Date Modified Username Field Change
2014-08-17 00:15 Orekaria New Issue
2014-08-17 00:15 Orekaria Assigned To => Orekaria
2014-08-17 00:15 Orekaria Triggers an Emergency Pack => No
2014-08-17 00:16 Orekaria Relationship added blocks 0027329
2014-08-17 00:25 hgbot Checkin
2014-08-17 00:25 hgbot Note Added: 0069410
2014-08-17 00:25 hgbot Status new => resolved
2014-08-17 00:25 hgbot Resolution open => fixed
2014-08-17 00:25 hgbot Fixed in SCM revision => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64b43ec6b05c4ac2f611446513d888f110c9b2d7 [^]
2014-08-17 00:32 hgbot Checkin
2014-08-17 00:32 hgbot Note Added: 0069411
2014-08-17 00:32 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64b43ec6b05c4ac2f611446513d888f110c9b2d7 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/9e1d2f32261052a83f3ed68e7f5259aa7bd1cb20 [^]
2014-08-17 12:30 hgbot Checkin
2014-08-17 12:30 hgbot Note Added: 0069415
2014-08-17 12:31 Orekaria Status resolved => new
2014-08-17 12:31 Orekaria Resolution fixed => open
2014-08-17 15:09 hgbot Checkin
2014-08-17 15:09 hgbot Note Added: 0069422
2014-08-17 15:09 hgbot Status new => resolved
2014-08-17 15:09 hgbot Resolution open => fixed
2014-08-17 15:09 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/9e1d2f32261052a83f3ed68e7f5259aa7bd1cb20 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a6753151bd4f219ed85b64c7b590c84e1955f1f [^]
2014-08-17 15:09 Orekaria Status resolved => new
2014-08-17 15:09 Orekaria Resolution fixed => open
2014-08-17 15:10 Orekaria Note Deleted: 0069411
2014-08-17 15:10 Orekaria Note Deleted: 0069415
2014-08-17 15:13 Orekaria Steps to Reproduce Updated View Revisions
2014-08-17 15:14 hgbot Checkin
2014-08-17 15:14 hgbot Note Added: 0069423
2014-08-17 15:14 hgbot Status new => resolved
2014-08-17 15:14 hgbot Resolution open => fixed
2014-08-17 15:14 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a6753151bd4f219ed85b64c7b590c84e1955f1f [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/ac81e375391e199954d7316baecd60a6948fc927 [^]
2014-08-17 17:01 Orekaria Status resolved => new
2014-08-17 17:01 Orekaria Resolution fixed => open
2014-08-17 17:03 Orekaria Severity minor => critical
2014-08-17 17:03 Orekaria Summary Performance: The list of resources of the Component Providers are being created hundreds of times => Performance: The globalResources in the Component Providers are being created hundreds of times and the code is thread unsafe
2014-08-17 17:03 Orekaria Description Updated View Revisions
2014-08-17 17:04 Orekaria Summary Performance: The globalResources in the Component Providers are being created hundreds of times and the code is thread unsafe => Stabilization: The globalResources in the Component Providers are being created hundreds of times and the code is thread unsafe
2014-08-17 17:04 Orekaria Description Updated View Revisions
2014-08-17 17:09 hgbot Checkin
2014-08-17 17:09 hgbot Note Added: 0069429
2014-08-17 17:09 hgbot Status new => resolved
2014-08-17 17:09 hgbot Resolution open => fixed
2014-08-17 17:09 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/ac81e375391e199954d7316baecd60a6948fc927 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/fcc0100ea23be8e37f663bd23cfdf1c10968e69f [^]
2014-08-17 17:10 hgbot Checkin
2014-08-17 17:10 hgbot Note Added: 0069430
2014-08-17 17:10 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/fcc0100ea23be8e37f663bd23cfdf1c10968e69f [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/3dcc63c26236df1ff330fdcef3fe670058e796ba [^]
2014-08-17 17:35 hgbot Checkin
2014-08-17 17:35 hgbot Note Added: 0069433
2014-08-17 17:35 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/3dcc63c26236df1ff330fdcef3fe670058e796ba [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/2dfd7f540c214d52f5750e89c29a40d5c150b1cf [^]
2014-08-17 17:37 hgbot Checkin
2014-08-17 17:37 hgbot Note Added: 0069434
2014-08-17 17:37 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/2dfd7f540c214d52f5750e89c29a40d5c150b1cf [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/496bd0747a9781cbe66d59a908f6c667abf4a7a4 [^]
2014-08-17 17:37 hgbot Checkin
2014-08-17 17:37 hgbot Note Added: 0069435
2014-08-17 17:37 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/496bd0747a9781cbe66d59a908f6c667abf4a7a4 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/5d43f620e20693562edf45bc3f8238f246d88949 [^]
2014-08-17 18:01 hgbot Checkin
2014-08-17 18:01 hgbot Note Added: 0069437
2014-08-17 18:01 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/5d43f620e20693562edf45bc3f8238f246d88949 [^] => http://code.openbravo.com/erp/devel/pi/rev/87b13b8ceac8a153efaaecae2cc6eb08a4203593 [^]
2014-08-17 18:12 Orekaria Issue Monitored: alostale
2014-08-18 01:58 hudsonbot Checkin
2014-08-18 01:58 hudsonbot Note Added: 0069453
2014-08-18 10:13 Orekaria Status resolved => new
2014-08-18 10:13 Orekaria Resolution fixed => open
2014-08-18 10:57 Orekaria Steps to Reproduce Updated View Revisions
2014-08-18 10:57 Orekaria Status new => scheduled
2014-08-18 10:57 Orekaria fix_in_branch => pi
2014-08-18 10:58 Orekaria Status scheduled => resolved
2014-08-18 10:58 Orekaria Fixed in Version => RR14Q4
2014-08-18 10:58 Orekaria Resolution open => fixed
2014-08-18 10:58 Orekaria Issue Monitored: shuehner
2014-08-18 10:58 Orekaria Issue Monitored: mtaal
2014-08-18 11:00 Orekaria Status resolved => new
2014-08-18 11:00 Orekaria Resolution fixed => open
2014-08-18 11:00 Orekaria Fixed in Version RR14Q4 =>
2014-08-18 11:02 Orekaria fix_in_branch pi =>
2014-08-18 11:02 Orekaria Steps to Reproduce Updated View Revisions
2014-08-18 11:02 Orekaria Status new => scheduled
2014-08-18 11:02 Orekaria fix_in_branch => pi
2014-08-18 11:03 Orekaria Status scheduled => resolved
2014-08-18 11:03 Orekaria Fixed in Version => RR14Q4
2014-08-18 11:03 Orekaria Resolution open => fixed
2014-08-18 14:59 Orekaria Relationship added depends on 0027348
2014-08-22 02:17 Orekaria Status resolved => new
2014-08-22 02:17 Orekaria Resolution fixed => open
2014-08-22 02:17 Orekaria Fixed in Version RR14Q4 =>
2014-08-22 02:19 Orekaria File Added: openbravo_24274_24275.diff
2014-08-22 02:21 Orekaria Status new => scheduled
2014-08-22 02:22 Orekaria File Deleted: openbravo_24274_24275.diff
2014-08-22 02:22 Orekaria Status scheduled => resolved
2014-08-22 02:22 Orekaria Fixed in Version => RR14Q4
2014-08-22 02:22 Orekaria Resolution open => fixed
2014-08-22 10:28 mtaal Note Added: 0069602
2014-08-22 10:28 mtaal Status resolved => new
2014-08-22 10:28 mtaal Resolution fixed => open
2014-08-22 10:28 mtaal Fixed in Version RR14Q4 =>
2014-08-23 01:34 hgbot Checkin
2014-08-23 01:34 hgbot Note Added: 0069631
2014-08-23 01:34 hgbot Status new => resolved
2014-08-23 01:34 hgbot Resolution open => fixed
2014-08-23 01:34 hgbot Fixed in SCM revision http://code.openbravo.com/erp/devel/pi/rev/87b13b8ceac8a153efaaecae2cc6eb08a4203593 [^] => http://code.openbravo.com/erp/devel/pi/rev/daa69c127184d785356a2268620511c2ae0a0e56 [^]
2014-08-23 01:34 hgbot Checkin
2014-08-23 01:34 hgbot Note Added: 0069632
2014-08-23 01:34 hgbot Fixed in SCM revision http://code.openbravo.com/erp/devel/pi/rev/daa69c127184d785356a2268620511c2ae0a0e56 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/b964170c9118836cc6c0589888b460653aedfcb0 [^]
2014-08-23 01:34 hgbot Checkin
2014-08-23 01:34 hgbot Note Added: 0069633
2014-08-23 01:34 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/b964170c9118836cc6c0589888b460653aedfcb0 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/2745e49351f0f65ed1f8d983eabe3fdcc4ef15c2 [^]
2014-08-23 01:34 hgbot Checkin
2014-08-23 01:34 hgbot Note Added: 0069634
2014-08-23 01:34 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.posterminal/rev/2745e49351f0f65ed1f8d983eabe3fdcc4ef15c2 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/061bc6480e561ca812c44e6ff8f3a88663570c39 [^]
2014-08-23 01:35 hgbot Checkin
2014-08-23 01:35 hgbot Note Added: 0069635
2014-08-23 01:35 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.returns/rev/061bc6480e561ca812c44e6ff8f3a88663570c39 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/4a6f75a6c3a9c7ea585ad5b9934bf3619f6f51b0 [^]
2014-08-23 09:08 hgbot Checkin
2014-08-23 09:08 hgbot Note Added: 0069636
2014-08-23 10:50 mtaal Review Assigned To => mtaal
2014-08-23 10:50 mtaal Note Added: 0069638
2014-08-23 10:50 mtaal Status resolved => closed
2014-08-23 10:50 mtaal Fixed in Version => RR14Q4
2014-08-23 10:52 hgbot Checkin
2014-08-23 10:52 hgbot Note Added: 0069639
2014-08-23 10:52 hgbot Status closed => resolved
2014-08-23 10:52 hgbot Fixed in SCM revision http://code.openbravo.com/erp/pmods/org.openbravo.retail.discounts/rev/4a6f75a6c3a9c7ea585ad5b9934bf3619f6f51b0 [^] => http://code.openbravo.com/erp/devel/pi/rev/a2f9c55b5ca95422e3580ec97b08b1d10ff744ac [^]
2014-08-23 16:30 hudsonbot Checkin
2014-08-23 16:30 hudsonbot Note Added: 0069648
2014-08-23 16:30 hudsonbot Checkin
2014-08-23 16:30 hudsonbot Note Added: 0069649
2014-08-23 23:47 mtaal Note Added: 0069655
2014-08-23 23:47 mtaal Status resolved => closed
2014-08-24 15:47 hudsonbot Checkin
2014-08-24 15:47 hudsonbot Note Added: 0069668


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker