forked from openfoodfoundation/openfoodnetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openfoodfoundation#2893 from luisramos0/deleted_pr…
…oducts_break_inventory Fix bug in inventory management page
- Loading branch information
Showing
4 changed files
with
48 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
db/migrate/20181020103501_revoke_variant_overrideswithout_permissions.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class RevokeVariantOverrideswithoutPermissions < ActiveRecord::Migration | ||
def up | ||
# This process was executed when the permission_revoked_at colum was created (see AddPermissionRevokedAtToVariantOverrides) | ||
# It needs to be repeated due to #2739 | ||
variant_override_hubs = Enterprise.where(id: VariantOverride.select(:hub_id).uniq) | ||
|
||
variant_override_hubs.find_each do |hub| | ||
permitting_producer_ids = hub.relationships_as_child | ||
.with_permission(:create_variant_overrides).pluck(:parent_id) | ||
|
||
variant_overrides_with_revoked_permissions = VariantOverride.for_hubs(hub) | ||
.joins(variant: :product).where("spree_products.supplier_id NOT IN (?)", permitting_producer_ids) | ||
|
||
variant_overrides_with_revoked_permissions.update_all(permission_revoked_at: Time.now) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters