Files
assetmgt/assets/database/STEP3.txt
“VeLiTi” 0648b69eff 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.
2026-02-03 08:55:52 +01:00

25 lines
1019 B
Plaintext

/*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);