Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0027628 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] A. Platform | major | always | 2014-09-17 17:32 | 2014-12-30 23:26 | |||
Reporter | caristu | View Status | public | |||||
Assigned To | AugustoMauch | |||||||
Priority | urgent | Resolution | fixed | Fixed in Version | 3.0PR15Q1 | |||
Status | closed | Fix in branch | Fixed in SCM revision | 2c2841f894b4 | ||||
Projection | none | ETA | none | Target Version | 3.0PR15Q1 | |||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | 3.0PR14Q3.1 | SCM revision | ||||||
Merge Request Status | ||||||||
Review Assigned To | AugustoMauch | |||||||
OBNetwork customer | OBPS | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Support ticket | 31040 | |||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | pi | |||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0027628: Some DateTime fields are not converted to the proper timezone | |||||||
Description | Some DateTime fields are not converted to the proper timezone (See attached) if they are not displayed in grid view | |||||||
Steps To Reproduce | 1) Create a new column of type DateTime, for example in the m_productprice table 2) Create a field for this new column Attached module with steps 1) and 2) 3) Do the following update in the database, in order to have the same dates in the new column and in the updated column: update m_productprice set newcolumn = updated 4) Put the server and the client in different timezones, for example the server in GMT+1 and the client in GMT+2 5) Access from the client to the Price tab in the Product window. Notice that the conversion is not applied for the new field. 6) Display the field in grid view. Notice that now the field is showing the correct time both in form and in grid view. Alternative steps (can be reproduced in livebuilds.openbravo.com): 1. Set different timezones in browser and server 2. Go to Process monitor 3. In grid select a record and check its Start Time 4. Go to form view -> OK same Start Time is shown 5. Go back to grid view and remove Start Time column from grid 6. Go to form view -> Start Time has changed | |||||||
Tags | No tags attached. | |||||||
Attached Files | ![]() ![]() | |||||||
![]() |
|||||||||||||||
|
![]() |
|
(0071606) alostale (viewer) 2014-11-12 13:09 |
The problem is in FIC which is not properly calculating classicValue property OK "EM_Obpf_Stddatetime": { "value": "2014-11-12T08:12:59.0Z", "classicValue": "12.11.2014 08:12:59" }, FAIL "EM_Obpf_Stddatetime": { "value": "2014-11-12T12:12:59.0Z", "classicValue": "12.11.2014 12:12:59" }, |
(0071753) hgbot (developer) 2014-11-18 11:52 |
Repository: erp/devel/pi Changeset: a86294635ce386152bb473773b0c9ba45f81fa81 Author: Asier Lostalé <asier.lostale <at> openbravo.com> Date: Tue Nov 18 11:51:24 2014 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/a86294635ce386152bb473773b0c9ba45f81fa81 [^] fixed bug 27628: date-time fields hidden in grid are not converted to proper tz When date time fields were hidden in grid and server and client were in different time zones, there were modifications in the time when moving to form view. The problem was FIC returned time in server's local time as it was read from DB. The fix: -FIC returns time in UTC -processFICReturn does the conversion -When invoking FIC UTC transformation is done (covers case of shown columns in grid) --- M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/form/ob-view-form.js M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/reference/DateTimeUIDefinition.java --- |
(0071754) alostale (viewer) 2014-11-18 11:59 |
For all these cases -Client and server same timezone -Client and server positive timezone difference -Client and server negative timezone difference -24hr time format -12hr (am/pm) time format -Relative date-time reference (the one reported as buggy) -Absolute date-time -Relative time -Absolute time -Hidding columns from grid -Showing columns in grid Tested -Creating a record and refreshing -From grid to form view navigation -Rereshing -Editing in grid -Editing in form In all the cases -same values are kept -in case of relative time/date-time correct timezone transformations are done -in case of absolute time/date-time no transformation is done having client/server in different timezones |
(0071955) AugustoMauch (administrator) 2014-11-24 17:57 |
Reopened because it causes https://issues.openbravo.com/view.php?id=28265 [^] |
(0071998) hgbot (developer) 2014-11-25 15:46 |
Repository: erp/devel/pi Changeset: 2c2841f894b42fdf358281c2d13af06452c788d6 Author: Augusto Mauch <augusto.mauch <at> openbravo.com> Date: Tue Nov 25 15:44:05 2014 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/2c2841f894b42fdf358281c2d13af06452c788d6 [^] Fixes issue 28265, fixes issue 27628: Prevents exception when parsing date Instead of converting the date to String and then parsing it back to Date, just pass the Date object as a parameter to the convertLocalTimeToUTC method --- M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/reference/DateTimeUIDefinition.java --- |
(0071999) hgbot (developer) 2014-11-25 15:46 |
Repository: erp/devel/pi Changeset: d8acdd64b6bf08189eb7616f2ac1e3db2ae0b98a Author: Augusto Mauch <augusto.mauch <at> openbravo.com> Date: Tue Nov 25 15:45:15 2014 +0100 URL: http://code.openbravo.com/erp/devel/pi/rev/d8acdd64b6bf08189eb7616f2ac1e3db2ae0b98a [^] Related with issue 27628: Renames method to convertLocalDateTimeToUTC --- M modules/org.openbravo.client.kernel/src/org/openbravo/client/kernel/reference/DateTimeUIDefinition.java --- |
(0072000) AugustoMauch (administrator) 2014-11-25 15:47 |
Code reviewed and verified in pi@d8acdd64b6bf |
(0073077) hudsonbot (viewer) 2014-12-30 23:25 |
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/6525fe229e06 [^] Maturity status: Test |
(0073139) hudsonbot (viewer) 2014-12-30 23:26 |
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/6525fe229e06 [^] Maturity status: Test |
(0073140) hudsonbot (viewer) 2014-12-30 23:26 |
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/6525fe229e06 [^] Maturity status: Test |
![]() |
|||
Date Modified | Username | Field | Change |
2014-09-17 17:32 | caristu | New Issue | |
2014-09-17 17:32 | caristu | Assigned To | => AugustoMauch |
2014-09-17 17:32 | caristu | File Added: dateTime.png | |
2014-09-17 17:32 | caristu | OBNetwork customer | => Yes |
2014-09-17 17:32 | caristu | Modules | => Core |
2014-09-17 17:32 | caristu | Triggers an Emergency Pack | => No |
2014-09-17 17:33 | caristu | Issue Monitored: networkb | |
2014-09-17 17:36 | caristu | Support ticket | => 31040 |
2014-09-17 17:36 | caristu | Resolution time | => 1417388400 |
2014-09-17 17:36 | caristu | version | => 3.0PR14Q3.1 |
2014-09-17 17:36 | caristu | Target Version | => 3.0PR14Q4 |
2014-09-22 16:36 | jonalegriaesarte | Target Version | 3.0PR14Q4 => 3.0PR15Q1 |
2014-11-11 09:28 | caristu | File Added: org.openbravo.support.tar.gz | |
2014-11-11 09:29 | caristu | Steps to Reproduce Updated | View Revisions |
2014-11-12 09:08 | caristu | Description Updated | View Revisions |
2014-11-12 09:08 | caristu | Steps to Reproduce Updated | View Revisions |
2014-11-12 09:09 | caristu | Description Updated | View Revisions |
2014-11-12 09:09 | caristu | Steps to Reproduce Updated | View Revisions |
2014-11-12 09:10 | caristu | Steps to Reproduce Updated | View Revisions |
2014-11-12 12:10 | alostale | Steps to Reproduce Updated | View Revisions |
2014-11-12 13:09 | alostale | Note Added: 0071606 | |
2014-11-18 11:52 | hgbot | Checkin | |
2014-11-18 11:52 | hgbot | Note Added: 0071753 | |
2014-11-18 11:52 | hgbot | Status | new => resolved |
2014-11-18 11:52 | hgbot | Resolution | open => fixed |
2014-11-18 11:52 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/a86294635ce386152bb473773b0c9ba45f81fa81 [^] |
2014-11-18 11:59 | alostale | Note Added: 0071754 | |
2014-11-19 08:16 | alostale | Review Assigned To | => AugustoMauch |
2014-11-24 17:57 | AugustoMauch | Note Added: 0071955 | |
2014-11-24 17:57 | AugustoMauch | Status | resolved => new |
2014-11-24 17:57 | AugustoMauch | Resolution | fixed => open |
2014-11-24 17:58 | AugustoMauch | Regression level | => Coding ( Testing ) |
2014-11-24 17:58 | AugustoMauch | Regression date | => 2014-11-18 |
2014-11-24 17:58 | AugustoMauch | Regression introduced in release | => pi |
2014-11-24 17:58 | AugustoMauch | Regression introduced by commit | => https://code.openbravo.com/erp/devel/pi/rev/a86294635ce386152bb473773b0c9ba45f81fa81 [^] |
2014-11-25 12:51 | AugustoMauch | Regression level | Coding ( Testing ) => |
2014-11-25 12:51 | AugustoMauch | Regression date | 2014-11-18 => |
2014-11-25 12:51 | AugustoMauch | Regression introduced by commit | https://code.openbravo.com/erp/devel/pi/rev/a86294635ce386152bb473773b0c9ba45f81fa81 [^] => |
2014-11-25 12:51 | AugustoMauch | Relationship added | causes 0028265 |
2014-11-25 15:46 | hgbot | Checkin | |
2014-11-25 15:46 | hgbot | Note Added: 0071998 | |
2014-11-25 15:46 | hgbot | Status | new => resolved |
2014-11-25 15:46 | hgbot | Resolution | open => fixed |
2014-11-25 15:46 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/a86294635ce386152bb473773b0c9ba45f81fa81 [^] => http://code.openbravo.com/erp/devel/pi/rev/2c2841f894b42fdf358281c2d13af06452c788d6 [^] |
2014-11-25 15:46 | hgbot | Checkin | |
2014-11-25 15:46 | hgbot | Note Added: 0071999 | |
2014-11-25 15:47 | AugustoMauch | Note Added: 0072000 | |
2014-11-25 15:47 | AugustoMauch | Status | resolved => closed |
2014-11-25 15:47 | AugustoMauch | Fixed in Version | => 3.0PR15Q1 |
2014-12-30 23:25 | hudsonbot | Checkin | |
2014-12-30 23:25 | hudsonbot | Note Added: 0073077 | |
2014-12-30 23:26 | hudsonbot | Checkin | |
2014-12-30 23:26 | hudsonbot | Note Added: 0073139 | |
2014-12-30 23:26 | hudsonbot | Checkin | |
2014-12-30 23:26 | hudsonbot | Note Added: 0073140 | |
2015-01-08 12:45 | AugustoMauch | Relationship added | related to 0028541 |
2015-01-08 15:30 | alostale | Relationship replaced | causes 0028541 |
Copyright © 2000 - 2009 MantisBT Group |