Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0026894 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
feature request | [Retail Modules] Web POS | major | always | 2014-06-18 11:08 | 2014-09-30 18:05 | |||
Reporter | Orekaria | View Status | public | |||||
Assigned To | Orekaria | |||||||
Priority | normal | Resolution | fixed | Fixed in Version | RR14Q4 | |||
Status | closed | Fix in branch | Fixed in SCM revision | 03a5f5f4dfb8 | ||||
Projection | none | ETA | none | Target Version | RR14Q4 | |||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Review Assigned To | marvintm | |||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0026894: Stabilization: Improve the synchronization management | |||||||
Description | Improve the synchronization management | |||||||
Steps To Reproduce | See the list below of related and blocked issues | |||||||
Proposed Solution | utils/ob-syncrhonization.js * The SynchornizationHelper class is intended to watch asynchronous calls in the application This class does only 2 things: - fire a 'synchronizing' event when registered (see below) asynchronous calls in the application starts - fire a 'synchronized' event when all the registered asynchronous calls have finished These events can and should be received by: - ui elements that have to be disabled because the underlying asynchronous calls are blocking its correct behavior (e.g.: the login button or the total to pay button) - model elements that have to wait until underlying asynchronous calls have finished (e.g.: update the local database) Required: - The asynchronous calls to be tracked have to be registered by one of the available SynchronizationHelper methods Howto implement the SynchronizationHelper: - find the asynchronous calls that are vital for the application - add a SynchronizationHelper.busyUntilFinishes and get the returning id - add a SynchronizationHelper.finished(<busyUntilFinishes_id>) when the asynchronous call have finished, success or fail - subscribe to the events 'synchronizing' and 'synchronized', the elements that you want to depend on the SynchronizationHelper status Notes: - to see the SynchronizationHelper log, set verbose = true - console.error is used because it attaches the stacktrace to the message Example of registering/unregistering asynchronous calls (ob-datasource.js): function serviceGET(source, dataparams, callback, callbackError, async) { var synchId = SynchronizationHelper.busyUntilFinishes('serviceGET ' + source); ... var ajaxRequest = new enyo.Ajax({ ... success: function (inSender, inResponse) { SynchronizationHelper.finished(synchId, 'serviceGET'); ... }, fail: function (status, inResponse) { SynchronizationHelper.finished(synchId, 'serviceGET'); ... } }); ajaxRequest.go().response('success').error('fail'); } Example of event subscriptions (ob-login.js): enyo.kind({ name: 'OB.OBPOSLogin.UI.LoginButton', ... handlers: { synchronizing: 'disableButton', synchronized: 'enableButton' }, disableButton: function () { this.setDisabled(true); }, enableButton: function () { this.setDisabled(false); }, initComponents: function () { this.inherited(arguments); ... this.setDisabled(true); } }); */ | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
Relationships [ Relation Graph ] [ Dependency Graph ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Notes | |
(0069042) hgbot (developer) 2014-08-02 01:52 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 82315064b4b6106840e3dcbb6c708f047e11cfc9 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Sat Aug 02 01:52:01 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/82315064b4b6106840e3dcbb6c708f047e11cfc9 [^] Fixes issue 26894: Added the new SynchronizationHelper 0.2 ... This class is intended to handle the synchronization status of the WebPOS. Sensitive processes must call this class to update the synchronization status. The class has been added at the head of the generated javascript file so it is available to any other class. --- M src/org/openbravo/mobile/core/MobileCoreComponentProvider.java A web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069108) hgbot (developer) 2014-08-07 01:08 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 71655b98eac4f106c3f2b01ada76484831a3f802 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Thu Aug 07 01:04:09 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/71655b98eac4f106c3f2b01ada76484831a3f802 [^] Fixes issue 26894. SynchronizationHelper 0.3... - Better status management - Added a timeout. The 'synchronized' event will always be fired - The 'synchronized' event is fired when the heap empties - More and better error messages - Deactivated unnecessary messages in production --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069112) hgbot (developer) 2014-08-07 13:38 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: c1dfadb0842facdf6c6ee638d0e35535fd2fd446 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Thu Aug 07 13:04:44 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/c1dfadb0842facdf6c6ee638d0e35535fd2fd446 [^] Fixes issue 26894. SynchronizationHelper 0.4... - The events are also triggered to the OB.MobileApp.model --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069276) hgbot (developer) 2014-08-08 20:31 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 1fba7c6d7f55cff4659e2f34a961f98115833f87 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Fri Aug 08 20:31:40 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/1fba7c6d7f55cff4659e2f34a961f98115833f87 [^] Fixes issue 26894: the model event should be fire before the view event --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069279) hgbot (developer) 2014-08-09 03:19 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 173c80b150e7de47fe5c508c291813cbf460e4c8 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Sat Aug 09 03:19:05 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/173c80b150e7de47fe5c508c291813cbf460e4c8 [^] Fixes issue 26894. SynchronizationHelper 0.5... - Fixed an error in the busy flow - Added a check to verify parity 'synchronizing' - 'synchronized' calls - Added a verbose flag - Better 'synchronizing' algorithm --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069280) hgbot (developer) 2014-08-09 03:32 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 6a240e1c6a3f7f726cdf1a2230512be85998b29c Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Sat Aug 09 03:32:04 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a240e1c6a3f7f726cdf1a2230512be85998b29c [^] Fixes issue 26894: Fixed an error calling the sendSynchronizing function --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069281) hgbot (developer) 2014-08-09 03:36 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: bc36fbca0c5289e18aecf6ee69b798674952840d Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Sat Aug 09 03:36:06 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/bc36fbca0c5289e18aecf6ee69b798674952840d [^] Fixes issue 26894: Index count changed to pair calls --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069302) hgbot (developer) 2014-08-12 09:29 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 74e99f51557d0268afbd7acf61750b93ef67b4cb Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Tue Aug 12 09:28:59 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/74e99f51557d0268afbd7acf61750b93ef67b4cb [^] Fixes issue 26894. SynchronizationHelper 0.6... - If the timeout is reached, the 'synchronizing' event must stop trying to be sent --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069313) hgbot (developer) 2014-08-12 13:03 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: a767a0acd3f98db3a7408bdf70b48ee6ffe01141 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Tue Aug 12 13:02:55 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/a767a0acd3f98db3a7408bdf70b48ee6ffe01141 [^] Fixes issue 26894. Verbose mode should be turned off except when debugging --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069339) hgbot (developer) 2014-08-13 13:39 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 64dc38d198a439b08ce035206ca12042bb4211df Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Wed Aug 13 13:39:30 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64dc38d198a439b08ce035206ca12042bb4211df [^] Fixes issue 26894. When the timeout is reached the synchronized event should be fired --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069459) hgbot (developer) 2014-08-18 14:27 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 65b9609f790204c687289b919e00dc8151d6a324 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Mon Aug 18 14:27:37 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/65b9609f790204c687289b919e00dc8151d6a324 [^] Fixes issue 26894: SynchronizationHelper v0.7 - added documentation - separated the main variables 'delaySynchronizedEvent' and 'timeoutThreshold' for easy maintenance and tweaking - refactor of functions - added an error that will add a line in the automated tests file 'browser.log' about the time since the last synchonized state - renaming - added enyo and backbone loaded detection - added log groups for debugging --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069464) hgbot (developer) 2014-08-18 15:25 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 1f63b60f2580d4b3ab0a105c6fc7e346e4248db8 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Mon Aug 18 15:24:59 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/1f63b60f2580d4b3ab0a105c6fc7e346e4248db8 [^] Related to issue 26894: verbose turned off --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069465) hgbot (developer) 2014-08-18 16:17 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: c5598aadd723b613594f4e3b152e9153806d2637 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Mon Aug 18 16:16:51 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/c5598aadd723b613594f4e3b152e9153806d2637 [^] Related to issue 26894: change in the elapsed time message because %s is seen in the browser.log --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069484) hgbot (developer) 2014-08-18 23:40 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 5645a9d046ddacd52793ee4842532620b601bc00 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Mon Aug 18 23:40:07 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/5645a9d046ddacd52793ee4842532620b601bc00 [^] Fixes issue 26894: updated documentation to let know that only registered calls are watched --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069621) hgbot (developer) 2014-08-22 22:25 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 03fd8fe81a668c6a6ee919d0a62d93bb3b992760 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Fri Aug 22 22:25:00 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/03fd8fe81a668c6a6ee919d0a62d93bb3b992760 [^] Related to issue 26894: the 'Elapsed time since last sync...' message will only be shown while in development or in the tests jobs --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069622) hgbot (developer) 2014-08-22 22:38 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: d30189ca098fe07f1187d038fcf29e81fe9dd59f Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Fri Aug 22 22:37:46 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/d30189ca098fe07f1187d038fcf29e81fe9dd59f [^] Related to issue 26894: SynchronizationHelper.log can be shown while inDebug --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0069925) hgbot (developer) 2014-09-02 22:04 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 03a5f5f4dfb852b2cf18508714dcf2b657a47b00 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Tue Sep 02 22:03:50 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/03a5f5f4dfb852b2cf18508714dcf2b657a47b00 [^] Fixes issue 26894: Lowered the SynchronizationHelper's 'elapsed since' message to debug log level --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0070334) hgbot (developer) 2014-09-24 21:56 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 9519a61eceeee3a3257b096e0cc508ac6b26ec09 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Wed Sep 24 21:54:57 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/9519a61eceeee3a3257b096e0cc508ac6b26ec09 [^] Related to issue 26894: Added argument checks for busyUntilFinishes and finished methods --- M web/org.openbravo.mobile.core/source/utils/ob-synchronization.js --- |
(0070479) hgbot (developer) 2014-09-29 02:58 |
Repository: erp/pmods/org.openbravo.mobile.core Changeset: 536ceafd817610ccb4ae8fa0409f4a03d34dedd3 Author: Rafa Alonso <rafael.alonso <at> openbravo.com> Date: Mon Sep 29 02:58:24 2014 +0200 URL: http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/536ceafd817610ccb4ae8fa0409f4a03d34dedd3 [^] Related to issue 26894: the 'registerModel' method missed the paired synchronization call when the ajax call fails --- M web/org.openbravo.mobile.core/source/data/ob-model.js --- |
Issue History | |||
Date Modified | Username | Field | Change |
2014-06-18 11:08 | Orekaria | New Issue | |
2014-06-18 11:08 | Orekaria | Assigned To | => Orekaria |
2014-06-18 11:08 | Orekaria | Triggers an Emergency Pack | => No |
2014-06-24 14:16 | migueldejuana | Target Version | RR14Q3 => RR14Q4 |
2014-07-14 12:30 | Orekaria | Relationship added | related to 0026880 |
2014-07-14 12:30 | Orekaria | Relationship added | related to 0026740 |
2014-07-14 12:30 | Orekaria | Relationship added | related to 0027059 |
2014-07-14 12:32 | Orekaria | Relationship added | related to 0026866 |
2014-07-25 10:22 | Orekaria | Relationship added | blocks 0027192 |
2014-07-29 09:03 | Orekaria | Relationship added | related to 0027173 |
2014-08-01 20:34 | Orekaria | Relationship added | related to 0027228 |
2014-08-01 20:35 | Orekaria | Relationship replaced | blocks 0027228 |
2014-08-01 20:35 | Orekaria | Relationship replaced | blocks 0027059 |
2014-08-01 20:38 | Orekaria | Summary | Improve the disabling of the pay button to wait until the backbone queue is empty => Improve the synchronization management |
2014-08-01 20:38 | Orekaria | Description Updated | View Revisions |
2014-08-01 20:38 | Orekaria | Steps to Reproduce Updated | View Revisions |
2014-08-01 20:38 | Orekaria | Proposed Solution updated | |
2014-08-02 01:52 | hgbot | Checkin | |
2014-08-02 01:52 | hgbot | Note Added: 0069042 | |
2014-08-02 01:52 | hgbot | Status | new => resolved |
2014-08-02 01:52 | hgbot | Resolution | open => fixed |
2014-08-02 01:52 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/82315064b4b6106840e3dcbb6c708f047e11cfc9 [^] |
2014-08-02 02:27 | Orekaria | Relationship added | blocks 0027212 |
2014-08-02 02:38 | Orekaria | Relationship added | blocks 0027268 |
2014-08-06 23:58 | Orekaria | Relationship added | blocks 0027287 |
2014-08-07 01:08 | hgbot | Checkin | |
2014-08-07 01:08 | hgbot | Note Added: 0069108 | |
2014-08-07 01:08 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/82315064b4b6106840e3dcbb6c708f047e11cfc9 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/71655b98eac4f106c3f2b01ada76484831a3f802 [^] |
2014-08-07 13:38 | hgbot | Checkin | |
2014-08-07 13:38 | hgbot | Note Added: 0069112 | |
2014-08-07 13:38 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/71655b98eac4f106c3f2b01ada76484831a3f802 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/c1dfadb0842facdf6c6ee638d0e35535fd2fd446 [^] |
2014-08-07 19:33 | Orekaria | Relationship added | blocks 0027291 |
2014-08-08 20:31 | hgbot | Checkin | |
2014-08-08 20:31 | hgbot | Note Added: 0069276 | |
2014-08-08 20:31 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/c1dfadb0842facdf6c6ee638d0e35535fd2fd446 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/1fba7c6d7f55cff4659e2f34a961f98115833f87 [^] |
2014-08-09 00:53 | Orekaria | Relationship added | blocks 0027300 |
2014-08-09 03:19 | hgbot | Checkin | |
2014-08-09 03:19 | hgbot | Note Added: 0069279 | |
2014-08-09 03:19 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/1fba7c6d7f55cff4659e2f34a961f98115833f87 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/173c80b150e7de47fe5c508c291813cbf460e4c8 [^] |
2014-08-09 03:32 | hgbot | Checkin | |
2014-08-09 03:32 | hgbot | Note Added: 0069280 | |
2014-08-09 03:32 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/173c80b150e7de47fe5c508c291813cbf460e4c8 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a240e1c6a3f7f726cdf1a2230512be85998b29c [^] |
2014-08-09 03:36 | hgbot | Checkin | |
2014-08-09 03:36 | hgbot | Note Added: 0069281 | |
2014-08-09 03:36 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/6a240e1c6a3f7f726cdf1a2230512be85998b29c [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/bc36fbca0c5289e18aecf6ee69b798674952840d [^] |
2014-08-09 04:16 | Orekaria | Relationship added | blocks 0027302 |
2014-08-12 09:29 | hgbot | Checkin | |
2014-08-12 09:29 | hgbot | Note Added: 0069302 | |
2014-08-12 09:29 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/bc36fbca0c5289e18aecf6ee69b798674952840d [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/74e99f51557d0268afbd7acf61750b93ef67b4cb [^] |
2014-08-12 13:03 | hgbot | Checkin | |
2014-08-12 13:03 | hgbot | Note Added: 0069313 | |
2014-08-12 13:03 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/74e99f51557d0268afbd7acf61750b93ef67b4cb [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/a767a0acd3f98db3a7408bdf70b48ee6ffe01141 [^] |
2014-08-13 13:39 | hgbot | Checkin | |
2014-08-13 13:39 | hgbot | Note Added: 0069339 | |
2014-08-13 13:39 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/a767a0acd3f98db3a7408bdf70b48ee6ffe01141 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64dc38d198a439b08ce035206ca12042bb4211df [^] |
2014-08-16 12:03 | Orekaria | Relationship added | related to 0027348 |
2014-08-18 11:32 | Orekaria | Status | resolved => new |
2014-08-18 11:32 | Orekaria | Resolution | fixed => open |
2014-08-18 13:21 | Orekaria | Proposed Solution updated | |
2014-08-18 13:22 | Orekaria | Proposed Solution updated | |
2014-08-18 14:27 | hgbot | Checkin | |
2014-08-18 14:27 | hgbot | Note Added: 0069459 | |
2014-08-18 14:27 | hgbot | Status | new => resolved |
2014-08-18 14:27 | hgbot | Resolution | open => fixed |
2014-08-18 14:27 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/64dc38d198a439b08ce035206ca12042bb4211df [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/65b9609f790204c687289b919e00dc8151d6a324 [^] |
2014-08-18 14:58 | Orekaria | Relationship deleted | related to 0027348 |
2014-08-18 15:01 | Orekaria | Relationship added | blocks 0027348 |
2014-08-18 15:25 | hgbot | Checkin | |
2014-08-18 15:25 | hgbot | Note Added: 0069464 | |
2014-08-18 16:17 | hgbot | Checkin | |
2014-08-18 16:17 | hgbot | Note Added: 0069465 | |
2014-08-18 23:33 | Orekaria | Status | resolved => new |
2014-08-18 23:33 | Orekaria | Resolution | fixed => open |
2014-08-18 23:35 | Orekaria | Proposed Solution updated | |
2014-08-18 23:39 | Orekaria | Proposed Solution updated | |
2014-08-18 23:40 | hgbot | Checkin | |
2014-08-18 23:40 | hgbot | Note Added: 0069484 | |
2014-08-18 23:40 | hgbot | Status | new => resolved |
2014-08-18 23:40 | hgbot | Resolution | open => fixed |
2014-08-18 23:40 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/65b9609f790204c687289b919e00dc8151d6a324 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/5645a9d046ddacd52793ee4842532620b601bc00 [^] |
2014-08-22 22:25 | hgbot | Checkin | |
2014-08-22 22:25 | hgbot | Note Added: 0069621 | |
2014-08-22 22:38 | hgbot | Checkin | |
2014-08-22 22:38 | hgbot | Note Added: 0069622 | |
2014-08-24 17:39 | Orekaria | Status | resolved => new |
2014-08-24 17:39 | Orekaria | Resolution | fixed => open |
2014-08-24 17:40 | Orekaria | Relationship added | blocks 0027267 |
2014-08-24 17:40 | Orekaria | Status | new => scheduled |
2014-08-24 17:40 | Orekaria | fix_in_branch | => pi |
2014-08-24 17:40 | Orekaria | Relationship added | blocks 0027329 |
2014-08-25 17:10 | Orekaria | Relationship added | blocks 0027431 |
2014-08-26 11:17 | Orekaria | fix_in_branch | pi => |
2014-08-26 11:17 | Orekaria | Summary | Improve the synchronization management => Stabilization: Improve the synchronization management |
2014-09-01 10:01 | Orekaria | Relationship added | blocks 0027506 |
2014-09-02 22:04 | hgbot | Checkin | |
2014-09-02 22:04 | hgbot | Note Added: 0069925 | |
2014-09-02 22:04 | hgbot | Status | scheduled => resolved |
2014-09-02 22:04 | hgbot | Resolution | open => fixed |
2014-09-02 22:04 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/5645a9d046ddacd52793ee4842532620b601bc00 [^] => http://code.openbravo.com/erp/pmods/org.openbravo.mobile.core/rev/03a5f5f4dfb852b2cf18508714dcf2b657a47b00 [^] |
2014-09-24 17:45 | Orekaria | Relationship added | blocks 0027672 |
2014-09-24 21:56 | hgbot | Checkin | |
2014-09-24 21:56 | hgbot | Note Added: 0070334 | |
2014-09-29 02:58 | hgbot | Checkin | |
2014-09-29 02:58 | hgbot | Note Added: 0070479 | |
2014-09-30 18:04 | marvintm | Review Assigned To | => marvintm |
2014-09-30 18:04 | marvintm | Status | resolved => closed |
2014-09-30 18:05 | marvintm | Fixed in Version | => RR14Q4 |
2014-10-17 17:21 | Orekaria | Relationship added | blocks 0027908 |
2014-11-18 18:04 | Orekaria | Relationship added | blocks 0028217 |
Copyright © 2000 - 2009 MantisBT Group |