CM89 - expired contract handling

This commit is contained in:
“VeLiTi”
2024-09-25 12:01:18 +02:00
parent ffb29b731a
commit ae821d3870
16 changed files with 923 additions and 159 deletions

View File

@@ -16,7 +16,7 @@ $equipments_sub = array('equipments','servicereports','histories','firmwaretool'
$sales_sub = array('accounts','contracts');
$admin_sub = array('users','communications','partners');
$reporting_sub = array('report_build','report_usage');
$settings_sub = array('config','language','log');
$settings_sub = array('config','language','log','maintenance');
//URLS
$urls = array(
@@ -63,8 +63,8 @@ $urls = array(
"name" => "menu_products"
),
"sales" => array(
"url" => "accounts",
"selected" => "accounts",
"url" => "contracts",
"selected" => "contracts",
"icon" => "fa-solid fa-bars",
"name" => "menu_sales"
),
@@ -128,6 +128,12 @@ $urls = array(
"icon" => "fas fa-tachometer-alt",
"name" => "menu_log"
),
"maintenance" => array(
"url" => "maintenance",
"selected" => "maintenance",
"icon" => "fas fa-tachometer-alt",
"name" => "menu_maintenance"
),
"marketing" => array(
"url" => "marketing&product_group=Emergency_Plug&product_content=Images",
"selected" => "marketing",

View File

@@ -24,6 +24,8 @@ $menu_cartest = 'Fahrzeugdatenbank';
$menu_report_main = 'Berichte';
$menu_report_build = 'Bestand und Produktion';
$menu_report_usage = 'Systemnutzung';
$menu_maintenance = 'Maintenance';
//TABS
$tab1 = 'Allgemein';
@@ -32,6 +34,11 @@ $tab3 = 'Protokoll';
$tab4 = 'Einstellungen';
//Global
$general_year = 'Jahr';
$general_quarter = 'Quartal';
$general_month = 'Monat';
$general_total = 'Gesamtanzahl';
$general_salesid = 'Verkaufs-ID';
$general_soldto = 'Verkauft an';
$general_shipto = 'Lieferadresse';
@@ -478,6 +485,14 @@ $contract_type0 = 'Fest';
$contract_type1 = 'Abonnement';
$contract_type2 = 'Pay-per-Use';
$contract_billinglabel = 'Billing';
$contract_billing0 = 'One-time after';
$contract_billing1 = 'Monthly';
$contract_billing2 = 'Quarterly';
$contract_billing3 = 'Annual';
$contract_service = 'Number of service events based on billingplan';
$contract_id = 'Vertrags-ID';
$contract_account = 'Konto';
$contract_type = 'Typ';
@@ -486,6 +501,7 @@ $contract_end_date = 'Enddatum';
$contract_reference = 'Referenz';
$contract_duration = 'Dauer (in Monaten)';
$contract_servicetool = 'Servicetool';
$contract_ignore_serial = 'Seriennummern ignorieren';
$contract_assigned_users = 'Zugewiesene Benutzer';
$contract_assigned_users_add = 'Benutzer hinzufügen';

View File

@@ -24,6 +24,8 @@ $menu_cartest = 'Auto database';
$menu_report_main = 'Rapporten';
$menu_report_build = 'Voorraad en Productie';
$menu_report_usage = 'Systeemgebruik';
$menu_maintenance = 'Maintenance';
//TABS
$tab1 = 'Algemeen';
@@ -32,6 +34,11 @@ $tab3 = 'Log';
$tab4 = 'Settings';
//Global
$general_year = 'Jaar';
$general_quarter = 'Kwartaal';
$general_month = 'Maand';
$general_total = 'Totaal';
$general_salesid = 'Verkoper';
$general_soldto = 'Verkocht aan';
$general_shipto = 'Verzonden aan';
@@ -482,6 +489,14 @@ $contract_type0 = 'Vast';
$contract_type1 = 'Abonnement';
$contract_type2 = 'Bij gebruik';
$contract_billinglabel = 'Betaalschema';
$contract_billing0 = 'Eenmalig achteraf';
$contract_billing1 = 'Maandelijks';
$contract_billing2 = 'Kwartaal';
$contract_billing3 = 'Jaarlijks';
$contract_service = 'Aantal service events obv betaalschema';
$contract_id = 'Contractnummer';
$contract_account = 'Klant';
$contract_type = 'Type';
@@ -491,6 +506,7 @@ $contract_reference = 'Referentie';
$contract_duration = 'Contract duur (in maanden)';
$contract_servicetool = 'Servicetool';
$contract_assigned_users = 'Gekoppelde gebruikers';
$contract_ignore_serial = 'Negeer serienummers';
$contract_assigned_users_add = 'Gebruiker toevoegen';
//=================================================================

View File

@@ -24,6 +24,7 @@ $menu_cartest = 'Car database';
$menu_report_main = 'Reports';
$menu_report_build = 'Stock and Production';
$menu_report_usage = 'System usage';
$menu_maintenance = 'Maintenance';
//TABS
$tab1 = 'General';
@@ -32,6 +33,11 @@ $tab3 = 'Log';
$tab4 = 'Settings';
//Global
$general_year = 'Year';
$general_quarter = 'Quarter';
$general_month = 'Month';
$general_total = 'Total';
$general_salesid = 'SalesID';
$general_soldto = 'SoldTo';
$general_shipto = 'ShipTo';
@@ -478,6 +484,14 @@ $contract_type0 = 'Fixed';
$contract_type1 = 'Subscription';
$contract_type2 = 'Pay per use';
$contract_billinglabel = 'Billingplan';
$contract_billing0 = 'One-time after';
$contract_billing1 = 'Monthly';
$contract_billing2 = 'Quarterly';
$contract_billing3 = 'Annual';
$contract_service = 'Number of service events based on billingplan';
$contract_id = 'Contract ID';
$contract_account = 'Account';
$contract_type = 'Type';
@@ -486,6 +500,7 @@ $contract_end_date = 'End date';
$contract_reference = 'Reference';
$contract_duration = 'Duration (in months)';
$contract_servicetool = 'Servicetool';
$contract_ignore_serial = 'Ignore serialnumbers';
$contract_assigned_users = 'Assigned users';
$contract_assigned_users_add = 'Add user';