diff --git a/app/models/spree/app_configuration_decorator.rb b/app/models/spree/app_configuration_decorator.rb index 2e1c838e95..0ecdc0e4ca 100644 --- a/app/models/spree/app_configuration_decorator.rb +++ b/app/models/spree/app_configuration_decorator.rb @@ -16,4 +16,9 @@ Spree::AppConfiguration.class_eval do preference :default_accounts_shipping_method_id, :integer, default: nil preference :auto_update_invoices, :boolean, default: false preference :auto_finalize_invoices, :boolean, default: false + + # Business Model Configuration + preference :account_invoices_monthly_fixed, :decimal, default: 0 + preference :account_invoices_monthly_rate, :decimal, default: 0 + preference :account_invoices_monthly_cap, :decimal, default: 0 end