Add configuration for warranty, payment options, and bookkeeping integration
- Defined constants for warranty months, eligibility window, and service months. - Enabled automatic invoice forwarding to bookkeeping software with email configuration. - Integrated payment options for Mollie and PayPal, including API keys and webhook settings. - Disabled pay on delivery option.
This commit is contained in:
25
assets/database/STEP3.txt
Normal file
25
assets/database/STEP3.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
/*Business Rule*/
|
||||
define("WARRANTY_MONTHS", 12);
|
||||
define("WARRANTY_ELIGIBILITY_WINDOW", 3);
|
||||
define("WARRANTY_EXTENDED_MONTH", 24);
|
||||
define("SERVICE_MONTHS", 12);
|
||||
|
||||
// Enable automatice invoice forward to bookkeeping software
|
||||
define('invoice_bookkeeping',false);
|
||||
// Email of bookkeeping software
|
||||
define('email_bookkeeping','7583fu12@verkoop.exactonline.nl');
|
||||
|
||||
/* Payment options */
|
||||
// Mollie
|
||||
define('mollie_enabled',true);
|
||||
define('mollie_api_key','live_WhsBD8qv3ygR9WVKF3KnCvz9zzNaxh'); //test_jFHqrt9KCSvaBwb4En9ttAM9MTrp9W
|
||||
|
||||
// PayPal
|
||||
define('paypal_enabled',true);
|
||||
define('PAYPAL_URL','https://api-m.paypal.com');
|
||||
define('PAYPAL_WEBHOOK_ID','6SD3463667513681M');
|
||||
define('PAYPAL_WEBHOOK','https://service.totalsafetysolutions.nl/webhook_paypal.php');
|
||||
define('PAYPAL_CLIENT_ID','AfOGVZKbFE3_SR4R2LuLBnrCRXzWsw4dlRopf5QeDdQwcxwe5jhExh5ituim66QsIYulDGG3gcbm655D');
|
||||
define('PAYPAL_CLIENT_SECRET','EEFEH-r5KQblHQ4KM49OQ37_mt-NJnVh5jA5aoOZseJbxi0b5LD07XxP6lanUpc4Xf5lbqWPbi1rGtJ4');
|
||||
|
||||
define('pay_on_delivery_enabled',false);
|
||||
Reference in New Issue
Block a user