[ofbiz-framework] branch trunk updated: Improved: puts dates in migration services to be able to remove them later

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-framework] branch trunk updated: Improved: puts dates in migration services to be able to remove them later

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a608fa4  Improved: puts dates in migration services to be able to remove them later
a608fa4 is described below

commit a608fa4b562bd9ea484785c0b1cde3f9305c8539
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Wed Feb 10 11:02:59 2021 +0100

    Improved: puts dates in migration services to be able to remove them later
---
 .../main/groovy/org/apache/ofbiz/order/OrderBlacklistServices.groovy  | 2 +-
 applications/product/groovyScripts/shipment/PicklistServices.groovy   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderBlacklistServices.groovy b/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderBlacklistServices.groovy
index 7d7252b..995ca4b 100644
--- a/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderBlacklistServices.groovy
+++ b/applications/order/src/main/groovy/org/apache/ofbiz/order/OrderBlacklistServices.groovy
@@ -21,7 +21,7 @@ import org.apache.ofbiz.entity.GenericValue
 
 /*
  * Migrate all elements present on OldOrderBlacklist and OldOrderBlacklistType to respectively OrderDenylist and OrderDenylistType entities
- * Update service for Deprecate since: branch release
+ * Update service created 2021-02
  */
 def migrateOldOrderBlacklistAndOldOrderBlacklistType() {
     List<GenericValue> oldOrderBlacklist = delegator.findAll("OldOrderBlacklist", false)
diff --git a/applications/product/groovyScripts/shipment/PicklistServices.groovy b/applications/product/groovyScripts/shipment/PicklistServices.groovy
index 59d4de6..f9846c6 100644
--- a/applications/product/groovyScripts/shipment/PicklistServices.groovy
+++ b/applications/product/groovyScripts/shipment/PicklistServices.groovy
@@ -21,7 +21,7 @@ import org.apache.ofbiz.entity.GenericValue
 
 /*
  * Migrate all element present on entity OldPicklistStatusHistory to entity PickListStatus
- * Update service for Deprecate since: branch release
+ * Update service created 2019-09
  */
 def migrateOldPicklistStatusHistoryToPickListStatus() {
     List<GenericValue> oldPicklistStatusHistories = delegator.findAll("OldPicklistStatusHistory", false)
@@ -36,4 +36,4 @@ def migrateOldPicklistStatusHistoryToPickListStatus() {
         it.remove()
     }
     return success()
-}
\ No newline at end of file
+}