Skip to content

Commit

Permalink
Merge pull request #24103 from eileenmcnaughton/ship_set
Browse files Browse the repository at this point in the history
dev/core#3685 Update some of our sample data price sets to NOT be quick config
  • Loading branch information
seamuslee001 authored Aug 19, 2022
2 parents 77b49e8 + e46fd4b commit b772722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xml/templates/civicrm_sample.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SELECT @domainID := id FROM civicrm_domain where name = 'Default Domain Name';
-- Sample Extended Property Group and Fields

INSERT INTO `civicrm_price_set` (`name`,`title`,`is_active`,`extends`,`is_quick_config`)
VALUES ('help_support_civicrm_amount', 'Help Support CiviCRM!', 1, 2, 1);
VALUES ('help_support_civicrm_amount', 'Help Support CiviCRM!', 1, 2, 0);

SELECT @priceSetId := max(id) FROM `civicrm_price_set` WHERE `is_quick_config` = 1 and name = 'help_support_civicrm_amount';

Expand Down Expand Up @@ -183,7 +183,7 @@ VALUES
INSERT INTO `civicrm_price_set` (`name`,`title`,`is_active`,`extends`, `is_quick_config`)
VALUES ('rain_forest_cup_youth_soccer_tournament', 'Rain-forest Cup Youth Soccer Tournament', 1, 1, 1),
('fall_fundraiser_dinner', 'Fall Fundraiser Dinner', 1, 1, 1),
('summer_solstice_festival_day_concert', 'Summer Solstice Festival Day Concert',1,1,1);
('summer_solstice_festival_day_concert', 'Summer Solstice Festival Day Concert',1,1,0);

SELECT @priceSetId := max(id) FROM `civicrm_price_set` WHERE `is_quick_config` = 1 AND `name` = 'rain_forest_cup_youth_soccer_tournament';

Expand Down

0 comments on commit b772722

Please sign in to comment.