From a4366a8318f3db3832f0710e378662d148b34149 Mon Sep 17 00:00:00 2001 From: Ramakant Gangwar Date: Tue, 31 Jan 2023 07:17:58 +0530 Subject: [PATCH] Survey add HasMany columns + fix aod_index + fix survey data rows + sort translations --- .../seeders/AodIndex/DataTypesTableSeeder.php | 2 +- .../AodIndex/PermissionsTableSeeder.php | 2 +- .../AodIndex/TranslationsTableSeeder.php | 10 +- .../seeders/Survey/DataRowsTableSeeder.php | 50 + .../Surveyquestion/DataRowsTableSeeder.php | 25 + .../DataRowsTableSeeder.php | 15 + .../Surveyresponse/DataRowsTableSeeder.php | 33 +- resources/lang/en/generic.php | 5 + resources/lang/en/seeders.php | 1204 +++++++++-------- src/VoyagerCrmServiceProvider.php | 1 + 10 files changed, 740 insertions(+), 607 deletions(-) create mode 100644 resources/lang/en/generic.php diff --git a/database/seeders/AodIndex/DataTypesTableSeeder.php b/database/seeders/AodIndex/DataTypesTableSeeder.php index da1dfc5..085d50b 100644 --- a/database/seeders/AodIndex/DataTypesTableSeeder.php +++ b/database/seeders/AodIndex/DataTypesTableSeeder.php @@ -15,7 +15,7 @@ public function run() $dataType = $this->dataType('slug', 'aod-indexes'); if (!$dataType->exists) { $dataType->fill([ - 'name' => 'aod_indexes', + 'name' => 'aod_index', 'display_name_singular' => __('joy-voyager-crm::seeders.data_types.aod_index.singular'), 'display_name_plural' => __('joy-voyager-crm::seeders.data_types.aod_index.plural'), 'icon' => 'voyager-bread voyager-crm-aod_index voyager-key', diff --git a/database/seeders/AodIndex/PermissionsTableSeeder.php b/database/seeders/AodIndex/PermissionsTableSeeder.php index c1891ad..83dceaf 100644 --- a/database/seeders/AodIndex/PermissionsTableSeeder.php +++ b/database/seeders/AodIndex/PermissionsTableSeeder.php @@ -13,6 +13,6 @@ class PermissionsTableSeeder extends Seeder */ public function run() { - Voyager::model('Permission')->generateFor('aod_indexes'); + Voyager::model('Permission')->generateFor('aod_index'); } } diff --git a/database/seeders/AodIndex/TranslationsTableSeeder.php b/database/seeders/AodIndex/TranslationsTableSeeder.php index 9536428..4ca05ba 100644 --- a/database/seeders/AodIndex/TranslationsTableSeeder.php +++ b/database/seeders/AodIndex/TranslationsTableSeeder.php @@ -30,17 +30,17 @@ public function run() */ private function aodIndexesTranslations() { - // Adding translations for 'aod_indexes' + // Adding translations for 'aod_index' // $cat = Voyager::model('AodIndex')->where('name', 'aod_index-1')->first(); if ($cat->exists) { - $this->trans('pt', $this->arr(['aod_indexes', 'name'], $cat->id), 'aod-index-1'); - $this->trans('pt', $this->arr(['aod_indexes', 'description'], $cat->id), 'AodIndex 1'); + $this->trans('pt', $this->arr(['aod_index', 'name'], $cat->id), 'aod-index-1'); + $this->trans('pt', $this->arr(['aod_index', 'description'], $cat->id), 'AodIndex 1'); } $cat = Voyager::model('AodIndex')->where('name', 'aod_index-2')->first(); if ($cat->exists) { - $this->trans('pt', $this->arr(['aod_indexes', 'name'], $cat->id), 'aod-index-2'); - $this->trans('pt', $this->arr(['aod_indexes', 'description'], $cat->id), 'AodIndex 2'); + $this->trans('pt', $this->arr(['aod_index', 'name'], $cat->id), 'aod-index-2'); + $this->trans('pt', $this->arr(['aod_index', 'description'], $cat->id), 'AodIndex 2'); } } diff --git a/database/seeders/Survey/DataRowsTableSeeder.php b/database/seeders/Survey/DataRowsTableSeeder.php index a81a5a3..00142af 100644 --- a/database/seeders/Survey/DataRowsTableSeeder.php +++ b/database/seeders/Survey/DataRowsTableSeeder.php @@ -183,6 +183,56 @@ public function run() ])->save(); } + $dataRow = $this->dataRow($dataType, 'survey_hasmany_surveyquestions_relationship'); + if (!$dataRow->exists) { + $dataRow->fill([ + 'type' => 'relationship', + 'display_name' => __('joy-voyager-crm::seeders.data_rows.surveyquestions'), + 'required' => 0, + 'browse' => 0, + 'read' => 0, + 'edit' => 1, + 'add' => 1, + 'delete' => 0, + 'order' => ++$order, + 'details' => [ + 'model' => Voyager::modelClass('Surveyquestion'), + 'table' => 'surveyquestions', + 'type' => 'hasMany', + 'column' => 'survey_id', + 'key' => 'id', + 'label' => 'name', + 'pivot_table' => 'surveyquestions', + 'pivot' => 0, + ], + ])->save(); + } + + $dataRow = $this->dataRow($dataType, 'survey_hasmany_surveyresponses_relationship'); + if (!$dataRow->exists) { + $dataRow->fill([ + 'type' => 'relationship', + 'display_name' => __('joy-voyager-crm::seeders.data_rows.surveyresponses'), + 'required' => 0, + 'browse' => 0, + 'read' => 0, + 'edit' => 1, + 'add' => 0, + 'delete' => 0, + 'order' => ++$order, + 'details' => [ + 'model' => Voyager::modelClass('Surveyresponse'), + 'table' => 'surveyresponses', + 'type' => 'hasMany', + 'column' => 'survey_id', + 'key' => 'id', + 'label' => 'name', + 'pivot_table' => 'surveyresponses', + 'pivot' => 0, + ], + ])->save(); + } + $dataRow = $this->dataRow($dataType, 'created_at'); if (!$dataRow->exists) { $dataRow->fill([ diff --git a/database/seeders/Surveyquestion/DataRowsTableSeeder.php b/database/seeders/Surveyquestion/DataRowsTableSeeder.php index f5c247e..a28d67e 100644 --- a/database/seeders/Surveyquestion/DataRowsTableSeeder.php +++ b/database/seeders/Surveyquestion/DataRowsTableSeeder.php @@ -201,6 +201,31 @@ public function run() ])->save(); } + $dataRow = $this->dataRow($dataType, 'survey_question_hasmany_surveyquestionoptions_relationship'); + if (!$dataRow->exists) { + $dataRow->fill([ + 'type' => 'relationship', + 'display_name' => __('joy-voyager-crm::seeders.data_rows.surveyquestionoptions'), + 'required' => 0, + 'browse' => 0, + 'read' => 0, + 'edit' => 1, + 'add' => 1, + 'delete' => 0, + 'order' => ++$order, + 'details' => [ + 'model' => Voyager::modelClass('Surveyquestionoption'), + 'table' => 'surveyquestionoptions', + 'type' => 'hasMany', + 'column' => 'survey_question_id', + 'key' => 'id', + 'label' => 'name', + 'pivot_table' => 'surveyquestionoptions', + 'pivot' => 0, + ], + ])->save(); + } + $dataRow = $this->dataRow($dataType, 'created_at'); if (!$dataRow->exists) { $dataRow->fill([ diff --git a/database/seeders/Surveyquestionresponse/DataRowsTableSeeder.php b/database/seeders/Surveyquestionresponse/DataRowsTableSeeder.php index fc89c39..ac1586e 100644 --- a/database/seeders/Surveyquestionresponse/DataRowsTableSeeder.php +++ b/database/seeders/Surveyquestionresponse/DataRowsTableSeeder.php @@ -31,6 +31,21 @@ public function run() ])->save(); } + $dataRow = $this->dataRow($dataType, 'name'); + if (!$dataRow->exists) { + $dataRow->fill([ + 'type' => 'text', + 'display_name' => __('joy-voyager-crm::seeders.data_rows.name'), + 'required' => 0, + 'browse' => 1, + 'read' => 1, + 'edit' => 1, + 'add' => 1, + 'delete' => 1, + 'order' => ++$order, + ])->save(); + } + $dataRow = $this->dataRow($dataType, 'description'); if (!$dataRow->exists) { $dataRow->fill([ diff --git a/database/seeders/Surveyresponse/DataRowsTableSeeder.php b/database/seeders/Surveyresponse/DataRowsTableSeeder.php index d566c72..6ca6618 100644 --- a/database/seeders/Surveyresponse/DataRowsTableSeeder.php +++ b/database/seeders/Surveyresponse/DataRowsTableSeeder.php @@ -122,7 +122,7 @@ public function run() 'model' => Voyager::modelClass('Account'), 'table' => 'accounts', 'type' => 'belongsTo', - 'column' => 'accounts', + 'column' => 'account_id', 'key' => 'id', 'label' => 'name', 'pivot_table' => 'accounts', @@ -162,7 +162,7 @@ public function run() 'model' => Voyager::modelClass('Campaign'), 'table' => 'campaigns', 'type' => 'belongsTo', - 'column' => 'campaigns', + 'column' => 'campaign_id', 'key' => 'id', 'label' => 'name', 'pivot_table' => 'campaigns', @@ -202,7 +202,7 @@ public function run() 'model' => Voyager::modelClass('Contact'), 'table' => 'contacts', 'type' => 'belongsTo', - 'column' => 'contacts', + 'column' => 'contact_id', 'key' => 'id', 'label' => 'first_name', 'pivot_table' => 'contacts', @@ -242,7 +242,7 @@ public function run() 'model' => Voyager::modelClass('Survey'), 'table' => 'surveys', 'type' => 'belongsTo', - 'column' => 'surveys', + 'column' => 'survey_id', 'key' => 'id', 'label' => 'name', 'pivot_table' => 'surveys', @@ -291,6 +291,31 @@ public function run() ])->save(); } + $dataRow = $this->dataRow($dataType, 'survey_question_hasmany_surveyquestionresponses_relationship'); + if (!$dataRow->exists) { + $dataRow->fill([ + 'type' => 'relationship', + 'display_name' => __('joy-voyager-crm::seeders.data_rows.surveyquestionresponses'), + 'required' => 0, + 'browse' => 0, + 'read' => 0, + 'edit' => 1, + 'add' => 1, + 'delete' => 0, + 'order' => ++$order, + 'details' => [ + 'model' => Voyager::modelClass('Surveyquestionresponse'), + 'table' => 'surveyquestionresponses', + 'type' => 'hasMany', + 'column' => 'surveyresponse_id', + 'key' => 'id', + 'label' => 'name', + 'pivot_table' => 'surveyquestionresponses', + 'pivot' => 0, + ], + ])->save(); + } + $dataRow = $this->dataRow($dataType, 'created_at'); if (!$dataRow->exists) { $dataRow->fill([ diff --git a/resources/lang/en/generic.php b/resources/lang/en/generic.php new file mode 100644 index 0000000..3ac44ad --- /dev/null +++ b/resources/lang/en/generic.php @@ -0,0 +1,5 @@ + [ - 'id' => 'Id', - 'name' => 'Name', - 'description' => 'Description', + 'accept_redirect' => 'Accept redirect', + 'accept_status' => 'Accept status', + 'account' => 'Account', + 'account_description' => 'Account description', + 'account_id' => 'Account id', + 'account_name' => 'Account name', 'account_type' => 'Account type', - 'industry' => 'Industry', - 'annual_revenue' => 'Annual revenue', - 'phone_fax' => 'Phone fax', - 'billing_address_street' => 'Billing address street', - 'billing_address_city' => 'Billing address city', - 'billing_address_state' => 'Billing address state', - 'billing_address_postalcode' => 'Billing address postalcode', - 'billing_address_country' => 'Billing address country', - 'rating' => 'Rating', - 'phone_office' => 'Phone office', - 'phone_alternate' => 'Phone alternate', - 'website' => 'Website', - 'ownership' => 'Ownership', - 'employees' => 'Employees', - 'ticker_symbol' => 'Ticker symbol', - 'shipping_address_street' => 'Shipping address street', - 'shipping_address_city' => 'Shipping address city', - 'shipping_address_state' => 'Shipping address state', - 'shipping_address_postalcode' => 'Shipping address postalcode', - 'shipping_address_country' => 'Shipping address country', - 'sic_code' => 'Sic code', - 'campaign_id' => 'Campaign id', - 'campaign' => 'Campaign', - 'bugs' => 'Bugs', - 'contacts' => 'Contacts', - 'opportunities' => 'Opportunities', - 'cases' => 'Cases', - 'assigned_to' => 'Assigned to', - 'parent' => 'Parent', - 'created_at' => 'Created at', - 'updated_at' => 'Updated at', - 'deleted_at' => 'Deleted at', - 'created_by' => 'Created by', - 'modified_by' => 'Modified by', - 'reminder' => 'Reminder', - 'is_read' => 'Is read', - 'target_module' => 'Target module', - 'type' => 'Type', - 'url_redirect' => 'Url redirect', - 'priority' => 'Priority', - 'override_business_hours' => 'Override business hours', - 'status' => 'Status', - 'percent_complete' => 'Percent complete', - 'predecessors' => 'Predecessors', - 'milestone_flag' => 'Milestone flag', - 'relationship_type' => 'Relationship type', - 'task_number' => 'Task number', - 'order_number' => 'Order number', - 'estimated_effort' => 'Estimated effort', - 'utilization' => 'Utilization', - 'duration' => 'Duration', - 'opening_hours' => 'Opening hours', - 'closing_hours' => 'Closing hours', - 'open_status' => 'Open status', - 'day' => 'Day', - 'last_optimised' => 'Last optimised', - 'location' => 'Location', - 'error' => 'Error', - 'success' => 'Success', - 'record_id' => 'Record id', - 'record_module' => 'Record module', - 'assigned_to_id' => 'Assigned to id', - 'revision' => 'Revision', + 'accounts' => 'Accounts', + 'accounts_audits' => 'Accounts audits', + 'action' => 'Action', + 'action_order' => 'Action order', + 'active' => 'Active', + 'active_date' => 'Active date', + 'activity_date' => 'Activity date', + 'activity_status_type' => 'Activity status type', + 'activity_type' => 'Activity type', + 'actual_cost' => 'Actual cost', + 'actual_duration' => 'Actual duration', + 'actual_effort' => 'Actual effort', 'additional_info' => 'Additional info', - 'user_id_c' => 'User id c', - 'user_id1_c' => 'User id1 c', - 'categories' => 'Categories', - 'case_id' => 'Case id', - 'case' => 'Case', - 'contact' => 'Contact', - 'contact_id' => 'Contact id', - 'internal' => 'Internal', - 'aor_report_id' => 'Aor report id', + 'address' => 'Address', + 'address_city' => 'Address city', + 'address_country' => 'Address country', + 'address_postalcode' => 'Address postalcode', + 'address_state' => 'Address state', + 'address_street' => 'Address street', + 'after_value_string' => 'After value string', + 'after_value_text' => 'After value text', + 'all_prospect_lists' => 'All prospect lists', + 'alt_address_city' => 'Alt address city', + 'alt_address_country' => 'Alt address country', + 'alt_address_postalcode' => 'Alt address postalcode', + 'alt_address_state' => 'Alt address state', + 'alt_address_street' => 'Alt address street', + 'amount' => 'Amount', + 'amount_usdollar' => 'Amount usdollar', + 'annual_revenue' => 'Annual revenue', + 'answer' => 'Answer', + 'answer_bool' => 'Answer bool', + 'answer_datetime' => 'Answer datetime', + 'answered' => 'Answered', 'aor_report' => 'Aor report', - 'x_field' => 'X field', - 'y_field' => 'Y field', - 'condition_order' => 'Condition order', - 'logic_op' => 'Logic op', - 'parenthesis' => 'Parenthesis', - 'module_path' => 'Module path', - 'field' => 'Field', - 'operator' => 'Operator', - 'value_type' => 'Value type', - 'value' => 'Value', - 'parameter' => 'Parameter', - 'field_order' => 'Field order', - 'display' => 'Display', - 'link' => 'Link', - 'label' => 'Label', - 'field_function' => 'Field function', - 'sort_by' => 'Sort by', - 'format' => 'Format', - 'total' => 'Total', - 'sort_order' => 'Sort order', - 'group_by' => 'Group by', - 'group_order' => 'Group order', - 'group_display' => 'Group display', - 'report_module' => 'Report module', - 'graphs_per_row' => 'Graphs per row', - 'schedule' => 'Schedule', - 'last_run' => 'Last run', - 'email_recipients' => 'Email recipients', - 'currency_id' => 'Currency id', - 'currency' => 'Currency', - 'contract_account_id' => 'Contract account id', - 'contract_account' => 'Contract account', - 'opportunity_id' => 'Opportunity id', - 'opportunity' => 'Opportunity', - 'call_id' => 'Call id', - 'call' => 'Call', - 'contract_type' => 'Contract type', - 'reference_code' => 'Reference code', - 'start_date' => 'Start date', - 'end_date' => 'End date', - 'customer_signed_date' => 'Customer signed date', - 'company_signed_date' => 'Company signed date', - 'renewal_reminder_date' => 'Renewal reminder date', - 'total_contract_value' => 'Total contract value', - 'total_contract_value_usdollar' => 'Total contract value usdollar', - 'total_amt' => 'Total amt', - 'total_amt_usdollar' => 'Total amt usdollar', - 'subtotal_amount' => 'Subtotal amount', - 'subtotal_amount_usdollar' => 'Subtotal amount usdollar', - 'discount_amount' => 'Discount amount', - 'discount_amount_usdollar' => 'Discount amount usdollar', - 'tax_amount' => 'Tax amount', - 'tax_amount_usdollar' => 'Tax amount usdollar', - 'shipping_amount' => 'Shipping amount', - 'shipping_amount_usdollar' => 'Shipping amount usdollar', - 'shipping_tax' => 'Shipping tax', - 'shipping_tax_amt' => 'Shipping tax amt', - 'shipping_tax_amt_usdollar' => 'Shipping tax amt usdollar', - 'total_amount' => 'Total amount', - 'total_amount_usdollar' => 'Total amount usdollar', - 'aos_contracts_id' => 'Aos contracts id', + 'aor_report_id' => 'Aor report id', 'aos_contract' => 'Aos contract', - 'documents_id' => 'Documents id', - 'document' => 'Document', - 'document_revision_id' => 'Document revision id', - 'document_revision' => 'Document revision', - 'billing_account_id' => 'Billing account id', - 'billing_account' => 'Billing account', - 'billing_contact_id' => 'Billing contact id', - 'billing_contact' => 'Billing contact', - 'number' => 'Number', - 'quote_number' => 'Quote number', - 'subtotal_tax_amount' => 'Subtotal tax amount', - 'subtotal_tax_amount_usdollar' => 'Subtotal tax amount usdollar', - 'quote_date' => 'Quote date', - 'invoice_date' => 'Invoice date', - 'due_date' => 'Due date', - 'template_ddown_c' => 'Template ddown c', - 'parent_type' => 'Parent type', - 'parent_id' => 'Parent id', - 'active' => 'Active', - 'pdfheader' => 'Pdfheader', - 'pdffooter' => 'Pdffooter', - 'margin_left' => 'Margin left', - 'margin_right' => 'Margin right', - 'margin_top' => 'Margin top', - 'margin_bottom' => 'Margin bottom', - 'margin_header' => 'Margin header', - 'margin_footer' => 'Margin footer', - 'page_size' => 'Page size', - 'orientation' => 'Orientation', - 'aos_product_category_id' => 'Aos product category id', - 'aos_product_category' => 'Aos product category', - 'maincode' => 'Maincode', - 'part_number' => 'Part number', - 'category' => 'Category', - 'url' => 'Url', - 'product_image' => 'Product image', - 'cost' => 'Cost', - 'cost_usdollar' => 'Cost usdollar', - 'price' => 'Price', - 'price_usdollar' => 'Price usdollar', - 'is_parent' => 'Is parent', - 'parent_category_id' => 'Parent category id', - 'item_description' => 'Item description', - 'product_qty' => 'Product qty', - 'product_cost_price' => 'Product cost price', - 'product_cost_price_usdollar' => 'Product cost price usdollar', - 'product_list_price' => 'Product list price', - 'product_list_price_usdollar' => 'Product list price usdollar', - 'product_discount' => 'Product discount', - 'product_discount_usdollar' => 'Product discount usdollar', - 'product_discount_amount' => 'Product discount amount', - 'product_discount_amount_usdollar' => 'Product discount amount usdollar', - 'discount' => 'Discount', - 'product_unit_price' => 'Product unit price', - 'product_unit_price_usdollar' => 'Product unit price usdollar', - 'vat_amt' => 'Vat amt', - 'vat_amt_usdollar' => 'Vat amt usdollar', - 'product_total_price' => 'Product total price', - 'product_total_price_usdollar' => 'Product total price usdollar', - 'vat' => 'Vat', - 'aos_product' => 'Aos product', - 'product_id' => 'Product id', + 'aos_contracts_id' => 'Aos contracts id', + 'aos_invoice' => 'Aos invoice', 'aos_line_item_group' => 'Aos line item group', - 'group_id' => 'Group id', - 'approval_issue' => 'Approval issue', - 'term' => 'Term', - 'stage' => 'Stage', - 'approval_status' => 'Approval status', - 'invoice_status' => 'Invoice status', - 'expiration' => 'Expiration', - 'terms_c' => 'Terms c', - 'aow_workflow_id' => 'Aow workflow id', - 'aow_workflow' => 'Aow workflow', - 'action_order' => 'Action order', - 'action' => 'Action', - 'parameters' => 'Parameters', - 'aow_processed' => 'Aow processed', - 'aow_processed_id' => 'Aow processed id', + 'aos_product' => 'Aos product', + 'aos_product_category' => 'Aos product category', + 'aos_product_category_id' => 'Aos product category id', + 'aos_products' => 'Aos products', + 'aos_quote' => 'Aos quote', 'aow_action' => 'Aow action', 'aow_action_id' => 'Aow action id', - 'flow_module' => 'Flow module', - 'flow_run_on' => 'Flow run on', - 'run_when' => 'Run when', - 'multiple_runs' => 'Multiple runs', - 'run_on_import' => 'Run on import', - 'bug_number' => 'Bug number', - 'resolution' => 'Resolution', - 'work_log' => 'Work log', - 'found_in_release' => 'Found in release', - 'fixed_in_release' => 'Fixed in release', - 'source' => 'Source', - 'product_category' => 'Product category', - 'duration_hours' => 'Duration hours', - 'duration_minutes' => 'Duration minutes', - 'date_start' => 'Date start', - 'date_end' => 'Date end', - 'direction' => 'Direction', - 'reminder_time' => 'Reminder time', - 'email_reminder_time' => 'Email reminder time', - 'email_reminder_sent' => 'Email reminder sent', - 'outlook_id' => 'Outlook id', - 'repeat_type' => 'Repeat type', - 'repeat_interval' => 'Repeat interval', - 'repeat_dow' => 'Repeat dow', - 'repeat_until' => 'Repeat until', - 'repeat_count' => 'Repeat count', - 'repeat_parent_id' => 'Repeat parent id', - 'recurring_source' => 'Recurring source', - 'required' => 'Required', - 'accept_status' => 'Accept status', - 'lead' => 'Lead', - 'lead_id' => 'Lead id', - 'reason' => 'Reason', - 'user' => 'User', - 'user_id' => 'User id', - 'tracker_key' => 'Tracker key', - 'tracker_count' => 'Tracker count', - 'refer_url' => 'Refer url', - 'tracker_text' => 'Tracker text', - 'impressions' => 'Impressions', - 'budget' => 'Budget', - 'actual_cost' => 'Actual cost', - 'expected_revenue' => 'Expected revenue', - 'campaign_type' => 'Campaign type', - 'objective' => 'Objective', - 'content' => 'Content', - 'frequency' => 'Frequency', - 'survey_id' => 'Survey id', - 'survey' => 'Survey', - 'target_tracker_key' => 'Target tracker key', - 'target_id' => 'Target id', - 'target_type' => 'Target type', - 'activity_type' => 'Activity type', - 'activity_date' => 'Activity date', - 'related_id' => 'Related id', - 'related_type' => 'Related type', + 'aow_processed' => 'Aow processed', + 'aow_processed_id' => 'Aow processed id', + 'aow_workflow' => 'Aow workflow', + 'aow_workflow_id' => 'Aow workflow id', + 'api_data' => 'Api data', + 'application' => 'Application', + 'approval_issue' => 'Approval issue', + 'approval_status' => 'Approval status', 'archived' => 'Archived', - 'hits' => 'Hits', - 'list_id' => 'List id', - 'more_information' => 'More information', - 'marketing_id' => 'Marketing id', - 'email_marketing' => 'Email marketing', - 'tracker_name' => 'Tracker name', - 'tracker_url' => 'Tracker url', - 'is_optout' => 'Is optout', - 'salutation' => 'Salutation', - 'first_name' => 'First name', - 'last_name' => 'Last name', - 'title' => 'Title', - 'photo' => 'Photo', - 'department' => 'Department', - 'do_not_call' => 'Do not call', - 'lawful_basis' => 'Lawful basis', - 'date_reviewed' => 'Date reviewed', - 'phone_home' => 'Phone home', - 'phone_mobile' => 'Phone mobile', - 'phone_work' => 'Phone work', - 'phone_other' => 'Phone other', - 'lawful_basis_source' => 'Lawful basis source', - 'primary_address_street' => 'Primary address street', - 'primary_address_city' => 'Primary address city', - 'primary_address_state' => 'Primary address state', - 'primary_address_postalcode' => 'Primary address postalcode', - 'primary_address_country' => 'Primary address country', - 'alt_address_street' => 'Alt address street', - 'alt_address_city' => 'Alt address city', - 'alt_address_state' => 'Alt address state', - 'alt_address_postalcode' => 'Alt address postalcode', - 'alt_address_country' => 'Alt address country', + 'assigned_to' => 'Assigned to', + 'assigned_to_id' => 'Assigned to id', 'assistant' => 'Assistant', 'assistant_phone' => 'Assistant phone', - 'lead_source' => 'Lead source', - 'reports_to_id' => 'Reports to id', - 'reports_to' => 'Reports to', + 'authenticate_id' => 'Authenticate id', + 'avatar' => 'Avatar', + 'bean' => 'Bean', + 'bean_id' => 'Bean id', + 'bean_module' => 'Bean module', + 'bean_type' => 'Bean type', + 'before_value_string' => 'Before value string', + 'before_value_text' => 'Before value text', + 'billing_account' => 'Billing account', + 'billing_account_id' => 'Billing account id', + 'billing_address_city' => 'Billing address city', + 'billing_address_country' => 'Billing address country', + 'billing_address_postalcode' => 'Billing address postalcode', + 'billing_address_state' => 'Billing address state', + 'billing_address_street' => 'Billing address street', + 'billing_contact' => 'Billing contact', + 'billing_contact_id' => 'Billing contact id', 'birthdate' => 'Birthdate', - 'joomla_account_id' => 'Joomla account id', - 'portal_account_disabled' => 'Portal account disabled', - 'portal_user_type' => 'Portal user type', - 'users' => 'Users', + 'body' => 'Body', + 'body_html' => 'Body html', + 'budget' => 'Budget', 'bug' => 'Bug', 'bug_id' => 'Bug id', - 'contact_role' => 'Contact role', + 'bug_number' => 'Bug number', + 'bugs' => 'Bugs', + 'call' => 'Call', + 'call_id' => 'Call id', + 'calls' => 'Calls', + 'campaign' => 'Campaign', + 'campaign_data' => 'Campaign data', + 'campaign_id' => 'Campaign id', + 'campaign_type' => 'Campaign type', + 'capacity' => 'Capacity', + 'case' => 'Case', + 'case_id' => 'Case id', 'case_number' => 'Case number', - 'account' => 'Account', - 'account_id' => 'Account id', - 'state' => 'State', + 'cases' => 'Cases', + 'catch_up' => 'Catch up', + 'categories' => 'Categories', + 'category' => 'Category', + 'category_id' => 'Category id', + 'change_log' => 'Change log', + 'city' => 'City', + 'client' => 'Client', + 'closing_hours' => 'Closing hours', + 'company_signed_date' => 'Company signed date', + 'condition_order' => 'Condition order', + 'config' => 'Config', + 'confirm_opt_in' => 'Confirm opt in', + 'confirm_opt_in_date' => 'Confirm opt in date', + 'confirm_opt_in_fail_date' => 'Confirm opt in fail date', + 'confirm_opt_in_sent_date' => 'Confirm opt in sent date', + 'confirm_opt_in_token' => 'Confirm opt in token', + 'consumer_key' => 'Consumer key', + 'consumer_secret' => 'Consumer secret', + 'contact' => 'Contact', 'contact_created_by' => 'Contact created by', 'contact_created_by_id' => 'Contact created by id', - 'symbol' => 'Symbol', - 'iso4217' => 'Iso4217', - 'decimal' => 'Decimal', - 'rounding' => 'Rounding', + 'contact_id' => 'Contact id', + 'contact_role' => 'Contact role', + 'contacts' => 'Contacts', + 'content' => 'Content', + 'contents' => 'Contents', + 'contract_account' => 'Contract account', + 'contract_account_id' => 'Contract account id', + 'contract_type' => 'Contract type', 'conversion_rate' => 'Conversion rate', - 'document_name' => 'Document name', + 'converted' => 'Converted', + 'coordinates' => 'Coordinates', + 'cost' => 'Cost', + 'cost_usdollar' => 'Cost usdollar', + 'country' => 'Country', + 'created_at' => 'Created at', + 'created_by' => 'Created by', + 'creator' => 'Creator', + 'crm_case' => 'Crm case', + 'currency' => 'Currency', + 'currency_id' => 'Currency id', + 'customer_signed_date' => 'Customer signed date', + 'data' => 'Data', + 'data_type' => 'Data type', + 'date_closed' => 'Date closed', + 'date_due' => 'Date due', + 'date_due_flag' => 'Date due flag', + 'date_end' => 'Date end', + 'date_finish' => 'Date finish', + 'date_reviewed' => 'Date reviewed', + 'date_sent_received' => 'Date sent received', + 'date_start' => 'Date start', + 'date_start_flag' => 'Date start flag', + 'date_time_end' => 'Date time end', + 'date_time_start' => 'Date time start', + 'date_willexecute' => 'Date willexecute', + 'day' => 'Day', + 'decimal' => 'Decimal', + 'decline_redirect' => 'Decline redirect', + 'default_values' => 'Default values', + 'delete_seen' => 'Delete seen', + 'deleted_at' => 'Deleted at', + 'delimiter' => 'Delimiter', + 'department' => 'Department', + 'description' => 'Description', + 'direction' => 'Direction', + 'discount' => 'Discount', + 'discount_amount' => 'Discount amount', + 'discount_amount_usdollar' => 'Discount amount usdollar', + 'display' => 'Display', + 'displayed_url' => 'Displayed url', + 'dissatisfied_text' => 'Dissatisfied text', + 'distance' => 'Distance', + 'do_not_call' => 'Do not call', 'doc_id' => 'Doc id', 'doc_type' => 'Doc type', 'doc_url' => 'Doc url', - 'active_date' => 'Active date', - 'exp_date' => 'Exp date', - 'category_id' => 'Category id', - 'subcategory_id' => 'Subcategory id', - 'status_id' => 'Status id', - 'related_doc' => 'Related doc', - 'related_doc_id' => 'Related doc id', - 'related_doc_rev' => 'Related doc rev', - 'related_doc_rev_id' => 'Related doc rev id', - 'is_template' => 'Is template', - 'template_type' => 'Template type', - 'accounts' => 'Accounts', - 'change_log' => 'Change log', + 'document' => 'Document', 'document_id' => 'Document id', - 'filename' => 'Filename', + 'document_name' => 'Document name', + 'document_revision' => 'Document revision', + 'document_revision_id' => 'Document revision id', + 'documents_id' => 'Documents id', + 'domain_name' => 'Domain name', + 'draft' => 'Draft', + 'due_date' => 'Due date', + 'duration' => 'Duration', + 'duration_hours' => 'Duration hours', + 'duration_minutes' => 'Duration minutes', + 'duration_unit' => 'Duration unit', + 'dynamic_query' => 'Dynamic query', + 'email' => 'Email', + 'email_address' => 'Email address', + 'email_address_caps' => 'Email address caps', + 'email_id' => 'Email id', + 'email_marketing' => 'Email marketing', + 'email_password' => 'Email password', + 'email_recipients' => 'Email recipients', + 'email_reminder_sent' => 'Email reminder sent', + 'email_reminder_time' => 'Email reminder time', + 'email_response_sent' => 'Email response sent', + 'email_sent' => 'Email sent', + 'email_template' => 'Email template', + 'email_user' => 'Email user', + 'embed_flag' => 'Embed flag', + 'employee_status' => 'Employee status', + 'employees' => 'Employees', + 'enclosure' => 'Enclosure', + 'end_date' => 'End date', + 'error' => 'Error', + 'estimated_effort' => 'Estimated effort', + 'estimated_end_date' => 'Estimated end date', + 'estimated_start_date' => 'Estimated start date', + 'execute_time' => 'Execute time', + 'exp_date' => 'Exp date', + 'expected_revenue' => 'Expected revenue', + 'expiration' => 'Expiration', + 'external_auth_only' => 'External auth only', + 'external_id' => 'External id', + 'factor_auth' => 'Factor auth', + 'factor_auth_interface' => 'Factor auth interface', + 'failure_count' => 'Failure count', + 'field' => 'Field', + 'field_function' => 'Field function', + 'field_name' => 'Field name', + 'field_order' => 'Field order', 'file_ext' => 'File ext', 'file_mime_type' => 'File mime type', - 'password' => 'Password', - 'application' => 'Application', - 'api_data' => 'Api data', - 'consumer_key' => 'Consumer key', - 'consumer_secret' => 'Consumer secret', - 'oauth_token' => 'Oauth token', - 'oauth_secret' => 'Oauth secret', - 'validated' => 'Validated', - 'orphaned' => 'Orphaned', - 'last_synced' => 'Last synced', - 'date_sent_received' => 'Date sent received', + 'filename' => 'Filename', + 'first_name' => 'First name', + 'fixed_in_release' => 'Fixed in release', 'flagged' => 'Flagged', - 'reply_to_status' => 'Reply to status', + 'flow_module' => 'Flow module', + 'flow_run_on' => 'Flow run on', + 'folder_type' => 'Folder type', + 'format' => 'Format', + 'found_in_release' => 'Found in release', + 'frequency' => 'Frequency', + 'from_addr' => 'From addr', + 'from_name' => 'From name', + 'fromaddr' => 'Fromaddr', + 'graphs_per_row' => 'Graphs per row', + 'group_by' => 'Group by', + 'group_display' => 'Group display', + 'group_id' => 'Group id', + 'group_order' => 'Group order', + 'groupfolder_id' => 'Groupfolder id', + 'grp' => 'Grp', + 'gsync_id' => 'Gsync id', + 'gsync_lastsync' => 'Gsync lastsync', + 'happiness' => 'Happiness', + 'happiness_question' => 'Happiness question', + 'has_child' => 'Has child', + 'has_header' => 'Has header', + 'hits' => 'Hits', + 'host_url' => 'Host url', + 'id' => 'Id', + 'imap_uid' => 'Imap uid', + 'import_module' => 'Import module', + 'impressions' => 'Impressions', + 'in_queue' => 'In queue', + 'in_queue_date' => 'In queue date', + 'inbound_email' => 'Inbound email', + 'inbound_email_id' => 'Inbound email id', + 'industry' => 'Industry', 'intent' => 'Intent', + 'internal' => 'Internal', + 'invalid_email' => 'Invalid email', + 'invite_templates' => 'Invite templates', + 'invoice_date' => 'Invoice date', + 'invoice_status' => 'Invoice status', + 'is_admin' => 'Is admin', + 'is_dynamic' => 'Is dynamic', + 'is_group' => 'Is group', + 'is_optout' => 'Is optout', + 'is_parent' => 'Is parent', + 'is_personal' => 'Is personal', + 'is_published' => 'Is published', + 'is_read' => 'Is read', + 'is_template' => 'Is template', + 'iso4217' => 'Iso4217', + 'item_description' => 'Item description', + 'item_id' => 'Item id', + 'item_summary' => 'Item summary', + 'jjwg_maps_lat' => 'Jjwg maps lat', + 'jjwg_maps_lng' => 'Jjwg maps lng', + 'job' => 'Job', + 'job_delay' => 'Job delay', + 'job_interval' => 'Job interval', + 'join_url' => 'Join url', + 'joomla_account_id' => 'Joomla account id', + 'label' => 'Label', + 'last_name' => 'Last name', + 'last_optimised' => 'Last optimised', + 'last_run' => 'Last run', + 'last_synced' => 'Last synced', + 'lat' => 'Lat', + 'lawful_basis' => 'Lawful basis', + 'lawful_basis_source' => 'Lawful basis source', + 'lead' => 'Lead', + 'lead_id' => 'Lead id', + 'lead_source' => 'Lead source', + 'lead_source_description' => 'Lead source description', + 'link' => 'Link', + 'link_type' => 'Link type', + 'link_url' => 'Link url', + 'list_id' => 'List id', + 'list_order' => 'List order', + 'list_type' => 'List type', + 'lng' => 'Lng', + 'location' => 'Location', + 'logic_op' => 'Logic op', + 'mail_sendtype' => 'Mail sendtype', + 'mail_smtpauth_req' => 'Mail smtpauth req', + 'mail_smtppass' => 'Mail smtppass', + 'mail_smtpport' => 'Mail smtpport', + 'mail_smtpserver' => 'Mail smtpserver', + 'mail_smtpssl' => 'Mail smtpssl', + 'mail_smtptype' => 'Mail smtptype', + 'mail_smtpuser' => 'Mail smtpuser', + 'mailbox' => 'Mailbox', 'mailbox_id' => 'Mailbox id', - 'uid' => 'Uid', + 'mailbox_type' => 'Mailbox type', + 'mailsize' => 'Mailsize', + 'maincode' => 'Maincode', + 'margin_bottom' => 'Margin bottom', + 'margin_footer' => 'Margin footer', + 'margin_header' => 'Margin header', + 'margin_left' => 'Margin left', + 'margin_right' => 'Margin right', + 'margin_top' => 'Margin top', + 'marker_image' => 'Marker image', + 'marketing_id' => 'Marketing id', 'mbox' => 'Mbox', - 'subject' => 'Subject', - 'fromaddr' => 'Fromaddr', - 'toaddr' => 'Toaddr', - 'senddate' => 'Senddate', + 'meeting' => 'Meeting', + 'meeting_id' => 'Meeting id', + 'message' => 'Message', 'message_id' => 'Message id', - 'mailsize' => 'Mailsize', - 'imap_uid' => 'Imap uid', + 'messenger_id' => 'Messenger id', + 'messenger_type' => 'Messenger type', + 'milestone_flag' => 'Milestone flag', + 'modified_by' => 'Modified by', + 'module' => 'Module', + 'module_name' => 'Module name', + 'module_path' => 'Module path', + 'module_type' => 'Module type', + 'monitor_id' => 'Monitor id', + 'more_information' => 'More information', 'msgno' => 'Msgno', - 'recent' => 'Recent', - 'answered' => 'Answered', - 'seen' => 'Seen', - 'draft' => 'Draft', - 'send_date_time' => 'Send date time', - 'in_queue' => 'In queue', - 'in_queue_date' => 'In queue date', - 'send_attempts' => 'Send attempts', - 'related_confirm_opt_in' => 'Related confirm opt in', - 'from_name' => 'From name', - 'from_addr' => 'From addr', - 'reply_to_name' => 'Reply to name', - 'reply_to_addr' => 'Reply to addr', - 'inbound_email' => 'Inbound email', - 'inbound_email_id' => 'Inbound email id', - 'email_template' => 'Email template', - 'template_id' => 'Template id', + 'multiple_runs' => 'Multiple runs', + 'name' => 'Name', + 'neither_text' => 'Neither text', + 'next_step' => 'Next step', + 'noninheritable' => 'Noninheritable', + 'number' => 'Number', + 'oauth_secret' => 'Oauth secret', + 'oauth_token' => 'Oauth token', + 'objective' => 'Objective', + 'open_status' => 'Open status', + 'opening_hours' => 'Opening hours', + 'operator' => 'Operator', + 'opportunities' => 'Opportunities', + 'opportunity' => 'Opportunity', + 'opportunity_amount' => 'Opportunity amount', + 'opportunity_id' => 'Opportunity id', + 'opportunity_name' => 'Opportunity name', + 'opportunity_type' => 'Opportunity type', + 'opt_out' => 'Opt out', + 'ord' => 'Ord', + 'order_number' => 'Order number', + 'orientation' => 'Orientation', + 'orphaned' => 'Orphaned', 'outbound_email' => 'Outbound email', 'outbound_email_id' => 'Outbound email id', - 'all_prospect_lists' => 'All prospect lists', - 'prospect_lists' => 'Prospect lists', - 'email' => 'Email', - 'email_id' => 'Email id', - 'bean_id' => 'Bean id', - 'bean_module' => 'Bean module', - 'campaign_data' => 'Campaign data', - 'body' => 'Body', - 'body_html' => 'Body html', - 'text_only' => 'Text only', - 'published' => 'Published', - 'folder_type' => 'Folder type', + 'outlook_id' => 'Outlook id', + 'override_business_hours' => 'Override business hours', + 'ownership' => 'Ownership', + 'page_size' => 'Page size', + 'parameter' => 'Parameter', + 'parameters' => 'Parameters', + 'parent' => 'Parent', + 'parent_category_id' => 'Parent category id', 'parent_folder' => 'Parent folder', - 'has_child' => 'Has child', - 'is_group' => 'Is group', - 'is_dynamic' => 'Is dynamic', - 'dynamic_query' => 'Dynamic query', - 'invite_templates' => 'Invite templates', - 'accept_redirect' => 'Accept redirect', - 'decline_redirect' => 'Decline redirect', - 'activity_status_type' => 'Activity status type', - 'address' => 'Address', - 'address_city' => 'Address city', - 'address_country' => 'Address country', - 'address_postalcode' => 'Address postalcode', - 'address_state' => 'Address state', - 'capacity' => 'Capacity', - 'enclosure' => 'Enclosure', - 'module' => 'Module', - 'default_values' => 'Default values', - 'has_header' => 'Has header', - 'is_published' => 'Is published', - 'server_url' => 'Server url', - 'email_user' => 'Email user', - 'email_password' => 'Email password', + 'parent_id' => 'Parent id', + 'parent_task_id' => 'Parent task id', + 'parent_type' => 'Parent type', + 'parenthesis' => 'Parenthesis', + 'part_number' => 'Part number', + 'password' => 'Password', + 'pdffooter' => 'Pdffooter', + 'pdfheader' => 'Pdfheader', + 'percent_complete' => 'Percent complete', + 'phone_alternate' => 'Phone alternate', + 'phone_fax' => 'Phone fax', + 'phone_home' => 'Phone home', + 'phone_mobile' => 'Phone mobile', + 'phone_office' => 'Phone office', + 'phone_other' => 'Phone other', + 'phone_work' => 'Phone work', + 'photo' => 'Photo', + 'popup' => 'Popup', + 'popup_viewed' => 'Popup viewed', 'port' => 'Port', - 'service' => 'Service', - 'mailbox' => 'Mailbox', - 'delete_seen' => 'Delete seen', - 'mailbox_type' => 'Mailbox type', - 'stored_options' => 'Stored options', - 'is_personal' => 'Is personal', - 'groupfolder_id' => 'Groupfolder id', - 'lat' => 'Lat', - 'lng' => 'Lng', - 'city' => 'City', - 'country' => 'Country', - 'coordinates' => 'Coordinates', - 'distance' => 'Distance', - 'unit_type' => 'Unit type', - 'module_type' => 'Module type', - 'jjwg_maps_lat' => 'Jjwg maps lat', - 'jjwg_maps_lng' => 'Jjwg maps lng', - 'marker_image' => 'Marker image', - 'scheduler' => 'Scheduler', - 'scheduler_id' => 'Scheduler id', - 'execute_time' => 'Execute time', - 'message' => 'Message', - 'target' => 'Target', - 'data' => 'Data', - 'requeue' => 'Requeue', - 'retry_count' => 'Retry count', - 'failure_count' => 'Failure count', - 'job_delay' => 'Job delay', - 'client' => 'Client', - 'converted' => 'Converted', - 'refered_by' => 'Refered by', - 'lead_source_description' => 'Lead source description', - 'account_name' => 'Account name', - 'account_description' => 'Account description', - 'opportunity_name' => 'Opportunity name', - 'opportunity_amount' => 'Opportunity amount', - 'portal_name' => 'Portal name', + 'portal_account_disabled' => 'Portal account disabled', 'portal_app' => 'Portal app', - 'status_description' => 'Status description', - 'join_url' => 'Join url', - 'host_url' => 'Host url', - 'displayed_url' => 'Displayed url', - 'creator' => 'Creator', - 'external_id' => 'External id', - 'sequence' => 'Sequence', - 'gsync_id' => 'Gsync id', - 'gsync_lastsync' => 'Gsync lastsync', - 'meeting' => 'Meeting', - 'meeting_id' => 'Meeting id', 'portal_flag' => 'Portal flag', - 'embed_flag' => 'Embed flag', - 'opportunity_type' => 'Opportunity type', - 'amount' => 'Amount', - 'amount_usdollar' => 'Amount usdollar', - 'date_closed' => 'Date closed', - 'next_step' => 'Next step', - 'sales_stage' => 'Sales stage', + 'portal_name' => 'Portal name', + 'portal_only' => 'Portal only', + 'portal_user_type' => 'Portal user type', + 'predecessors' => 'Predecessors', + 'price' => 'Price', + 'price_usdollar' => 'Price usdollar', + 'primary_address_city' => 'Primary address city', + 'primary_address_country' => 'Primary address country', + 'primary_address_postalcode' => 'Primary address postalcode', + 'primary_address_state' => 'Primary address state', + 'primary_address_street' => 'Primary address street', + 'primary_group' => 'Primary group', + 'priority' => 'Priority', 'probability' => 'Probability', - 'smtp_from_name' => 'Smtp from name', - 'smtp_from_addr' => 'Smtp from addr', - 'mail_sendtype' => 'Mail sendtype', - 'mail_smtptype' => 'Mail smtptype', - 'mail_smtpserver' => 'Mail smtpserver', - 'mail_smtpport' => 'Mail smtpport', - 'mail_smtpuser' => 'Mail smtpuser', - 'mail_smtppass' => 'Mail smtppass', - 'mail_smtpauth_req' => 'Mail smtpauth req', - 'mail_smtpssl' => 'Mail smtpssl', - 'estimated_start_date' => 'Estimated start date', - 'estimated_end_date' => 'Estimated end date', - 'aos_products' => 'Aos products', + 'product_category' => 'Product category', + 'product_cost_price' => 'Product cost price', + 'product_cost_price_usdollar' => 'Product cost price usdollar', + 'product_discount' => 'Product discount', + 'product_discount_amount' => 'Product discount amount', + 'product_discount_amount_usdollar' => 'Product discount amount usdollar', + 'product_discount_usdollar' => 'Product discount usdollar', + 'product_id' => 'Product id', + 'product_image' => 'Product image', + 'product_list_price' => 'Product list price', + 'product_list_price_usdollar' => 'Product list price usdollar', + 'product_qty' => 'Product qty', + 'product_total_price' => 'Product total price', + 'product_total_price_usdollar' => 'Product total price usdollar', + 'product_unit_price' => 'Product unit price', + 'product_unit_price_usdollar' => 'Product unit price usdollar', + 'project' => 'Project', + 'project_task' => 'Project task', 'project_task_id' => 'Project task id', - 'time_start' => 'Time start', - 'time_finish' => 'Time finish', - 'date_finish' => 'Date finish', - 'duration_unit' => 'Duration unit', - 'actual_duration' => 'Actual duration', - 'date_due' => 'Date due', - 'time_due' => 'Time due', - 'parent_task_id' => 'Parent task id', - 'actual_effort' => 'Actual effort', - 'list_type' => 'List type', - 'domain_name' => 'Domain name', + 'prospect' => 'Prospect', 'prospect_list' => 'Prospect list', 'prospect_list_id' => 'Prospect list id', - 'list_order' => 'List order', - 'popup' => 'Popup', - 'email_sent' => 'Email sent', - 'timer_popup' => 'Timer popup', - 'timer_email' => 'Timer email', + 'prospect_lists' => 'Prospect lists', + 'prospects_list_prospect' => 'Prospects list prospect', + 'published' => 'Published', + 'pwd_last_changed' => 'Pwd last changed', + 'quote_date' => 'Quote date', + 'quote_number' => 'Quote number', + 'rating' => 'Rating', + 'reason' => 'Reason', + 'receive_notifications' => 'Receive notifications', + 'recent' => 'Recent', + 'record' => 'Record', + 'record_id' => 'Record id', + 'record_module' => 'Record module', + 'recurring_source' => 'Recurring source', + 'refer_url' => 'Refer url', + 'refered_by' => 'Refered by', + 'reference_code' => 'Reference code', + 'related' => 'Related', + 'related_confirm_opt_in' => 'Related confirm opt in', + 'related_doc' => 'Related doc', + 'related_doc_id' => 'Related doc id', + 'related_doc_rev' => 'Related doc rev', + 'related_doc_rev_id' => 'Related doc rev id', 'related_event_module' => 'Related event module', 'related_event_module_id' => 'Related event module id', - 'date_willexecute' => 'Date willexecute', - 'popup_viewed' => 'Popup viewed', - 'reminder_id' => 'Reminder id', + 'related_id' => 'Related id', 'related_invitee_module' => 'Related invitee module', 'related_invitee_module_id' => 'Related invitee module id', - 'search_module' => 'Search module', - 'contents' => 'Contents', - 'job' => 'Job', - 'date_time_start' => 'Date time start', - 'date_time_end' => 'Date time end', - 'job_interval' => 'Job interval', - 'time_from' => 'Time from', - 'time_to' => 'Time to', - 'catch_up' => 'Catch up', - 'noninheritable' => 'Noninheritable', - 'securitygroup' => 'Securitygroup', - 'securitygroup_id' => 'Securitygroup id', - 'primary_group' => 'Primary group', - 'config' => 'Config', 'related_module' => 'Related module', - 'link_url' => 'Link url', - 'link_type' => 'Link type', - 'submit_text' => 'Submit text', - 'satisfied_text' => 'Satisfied text', - 'neither_text' => 'Neither text', - 'dissatisfied_text' => 'Dissatisfied text', - 'happiness_question' => 'Happiness question', - 'survey_question' => 'Survey question', - 'survey_question_id' => 'Survey question id', - 'answer' => 'Answer', - 'answer_bool' => 'Answer bool', - 'answer_datetime' => 'Answer datetime', - 'surveyquestion' => 'Surveyquestion', - 'surveyquestion_id' => 'Surveyquestion id', - 'surveyresponse' => 'Surveyresponse', - 'happiness' => 'Happiness', - 'email_response_sent' => 'Email response sent', - 'date_due_flag' => 'Date due flag', - 'date_start_flag' => 'Date start flag', - 'thumbnail' => 'Thumbnail', - 'grp' => 'Grp', - 'ord' => 'Ord', - 'monitor_id' => 'Monitor id', - 'module_name' => 'Module name', - 'item_id' => 'Item id', - 'item_summary' => 'Item summary', - 'session_id' => 'Session id', - 'visible' => 'Visible', + 'related_type' => 'Related type', + 'relationship_type' => 'Relationship type', 'remember_token' => 'Remember token', - 'sugarfeeds' => 'Sugarfeeds', - 'avatar' => 'Avatar', + 'reminder' => 'Reminder', + 'reminder_id' => 'Reminder id', + 'reminder_time' => 'Reminder time', + 'renewal_reminder_date' => 'Renewal reminder date', + 'repeat_count' => 'Repeat count', + 'repeat_dow' => 'Repeat dow', + 'repeat_interval' => 'Repeat interval', + 'repeat_parent_id' => 'Repeat parent id', + 'repeat_type' => 'Repeat type', + 'repeat_until' => 'Repeat until', + 'reply_to_addr' => 'Reply to addr', + 'reply_to_name' => 'Reply to name', + 'reply_to_status' => 'Reply to status', + 'report_module' => 'Report module', + 'reports_to' => 'Reports to', + 'reports_to_id' => 'Reports to id', + 'request' => 'Request', + 'requeue' => 'Requeue', + 'required' => 'Required', + 'resolution' => 'Resolution', + 'retry_count' => 'Retry count', + 'revision' => 'Revision', 'role' => 'Role', 'roles' => 'Roles', - 'user_name' => 'User name', - 'user_hash' => 'User hash', - 'system_generated_password' => 'System generated password', - 'pwd_last_changed' => 'Pwd last changed', - 'authenticate_id' => 'Authenticate id', - 'sugar_login' => 'Sugar login', - 'is_admin' => 'Is admin', - 'external_auth_only' => 'External auth only', - 'receive_notifications' => 'Receive notifications', - 'address_street' => 'Address street', - 'portal_only' => 'Portal only', + 'rounding' => 'Rounding', + 'run_on_import' => 'Run on import', + 'run_when' => 'Run when', + 'sales_stage' => 'Sales stage', + 'salutation' => 'Salutation', + 'satisfied_text' => 'Satisfied text', + 'schedule' => 'Schedule', + 'scheduler' => 'Scheduler', + 'scheduler_id' => 'Scheduler id', + 'search_module' => 'Search module', + 'securitygroup' => 'Securitygroup', + 'securitygroup_id' => 'Securitygroup id', + 'seen' => 'Seen', + 'send_attempts' => 'Send attempts', + 'send_date_time' => 'Send date time', + 'senddate' => 'Senddate', + 'sequence' => 'Sequence', + 'server_url' => 'Server url', + 'service' => 'Service', + 'session_id' => 'Session id', + 'shipping_address_city' => 'Shipping address city', + 'shipping_address_country' => 'Shipping address country', + 'shipping_address_postalcode' => 'Shipping address postalcode', + 'shipping_address_state' => 'Shipping address state', + 'shipping_address_street' => 'Shipping address street', + 'shipping_amount' => 'Shipping amount', + 'shipping_amount_usdollar' => 'Shipping amount usdollar', + 'shipping_tax' => 'Shipping tax', + 'shipping_tax_amt' => 'Shipping tax amt', + 'shipping_tax_amt_usdollar' => 'Shipping tax amt usdollar', 'show_on_employees' => 'Show on employees', - 'employee_status' => 'Employee status', - 'messenger_id' => 'Messenger id', - 'messenger_type' => 'Messenger type', - 'factor_auth' => 'Factor auth', - 'factor_auth_interface' => 'Factor auth interface', - 'import_module' => 'Import module', - 'bean_type' => 'Bean type', + 'sic_code' => 'Sic code', 'signature' => 'Signature', 'signature_html' => 'Signature html', - 'project' => 'Project', - 'prospect' => 'Prospect', - 'project_task' => 'Project task', - 'related' => 'Related', - 'email_address' => 'Email address', - 'email_address_caps' => 'Email address caps', - 'invalid_email' => 'Invalid email', - 'opt_out' => 'Opt out', - 'confirm_opt_in' => 'Confirm opt in', - 'confirm_opt_in_date' => 'Confirm opt in date', - 'confirm_opt_in_sent_date' => 'Confirm opt in sent date', - 'confirm_opt_in_fail_date' => 'Confirm opt in fail date', - 'confirm_opt_in_token' => 'Confirm opt in token', - 'record_id' => 'Record Id', - 'record' => 'Record', - 'field_name' => 'Field name', - 'data_type' => 'Data type', - 'before_value_string' => 'Before value string', - 'after_value_string' => 'After value string', - 'before_value_text' => 'Before value text', - 'after_value_text' => 'After value text', - 'request' => 'Request', + 'smtp_from_addr' => 'Smtp from addr', + 'smtp_from_name' => 'Smtp from name', + 'sort_by' => 'Sort by', + 'sort_order' => 'Sort order', + 'source' => 'Source', + 'stage' => 'Stage', + 'start_date' => 'Start date', + 'state' => 'State', + 'status' => 'Status', + 'status_description' => 'Status description', + 'status_id' => 'Status id', 'step' => 'Step', + 'stored_options' => 'Stored options', + 'subcategory_id' => 'Subcategory id', + 'subject' => 'Subject', + 'submit_text' => 'Submit text', + 'subtotal_amount' => 'Subtotal amount', + 'subtotal_amount_usdollar' => 'Subtotal amount usdollar', + 'subtotal_tax_amount' => 'Subtotal tax amount', + 'subtotal_tax_amount_usdollar' => 'Subtotal tax amount usdollar', + 'success' => 'Success', + 'sugar_login' => 'Sugar login', + 'sugarfeeds' => 'Sugarfeeds', + 'survey' => 'Survey', + 'survey_id' => 'Survey id', + 'survey_question' => 'Survey question', + 'survey_question_id' => 'Survey question id', + 'surveyquestion' => 'Survey Question', + 'surveyquestion_id' => 'Survey Question id', + 'surveyquestions' => 'Survey Questions', + 'surveyquestionoptions' => 'Survey Question Options', + 'surveyquestionresponses' => 'Survey Question Responses', + 'surveyresponse' => 'Survey Response', + 'surveyresponses' => 'Survey Responses', + 'symbol' => 'Symbol', + 'system_generated_password' => 'System generated password', + 'target' => 'Target', + 'target_id' => 'Target id', + 'target_module' => 'Target module', + 'target_tracker_key' => 'Target tracker key', + 'target_type' => 'Target type', + 'task' => 'Task', + 'task_number' => 'Task number', + 'tax_amount' => 'Tax amount', + 'tax_amount_usdollar' => 'Tax amount usdollar', + 'template_ddown_c' => 'Template ddown c', + 'template_id' => 'Template id', + 'template_type' => 'Template type', + 'term' => 'Term', + 'terms_c' => 'Terms c', + 'text_only' => 'Text only', + 'thumbnail' => 'Thumbnail', + 'ticker_symbol' => 'Ticker symbol', + 'time_due' => 'Time due', + 'time_finish' => 'Time finish', + 'time_from' => 'Time from', + 'time_start' => 'Time start', + 'time_to' => 'Time to', + 'timer_email' => 'Timer email', + 'timer_popup' => 'Timer popup', + 'title' => 'Title', + 'toaddr' => 'Toaddr', + 'total' => 'Total', + 'total_amount' => 'Total amount', + 'total_amount_usdollar' => 'Total amount usdollar', + 'total_amt' => 'Total amt', + 'total_amt_usdollar' => 'Total amt usdollar', + 'total_contract_value' => 'Total contract value', + 'total_contract_value_usdollar' => 'Total contract value usdollar', + 'tracker_count' => 'Tracker count', + 'tracker_key' => 'Tracker key', + 'tracker_name' => 'Tracker name', + 'tracker_text' => 'Tracker text', + 'tracker_url' => 'Tracker url', + 'type' => 'Type', + 'uid' => 'Uid', + 'unit_type' => 'Unit type', + 'updated_at' => 'Updated at', + 'url' => 'Url', + 'url_redirect' => 'Url redirect', + 'user' => 'User', + 'user_hash' => 'User hash', + 'user_id' => 'User id', + 'user_id_c' => 'User id c', + 'user_id1_c' => 'User id1 c', + 'user_name' => 'User name', + 'users' => 'Users', + 'utilization' => 'Utilization', + 'validated' => 'Validated', + 'value' => 'Value', + 'value_type' => 'Value type', + 'vat' => 'Vat', + 'vat_amt' => 'Vat amt', + 'vat_amt_usdollar' => 'Vat amt usdollar', + 'visible' => 'Visible', + 'website' => 'Website', + 'work_log' => 'Work log', + 'x_field' => 'X field', + 'y_field' => 'Y field', ], 'data_types' => [ 'user' => [ @@ -1104,20 +1116,20 @@ 'plural' => 'Securitygroups acl roles', ], 'surveyquestion' => [ - 'singular' => 'Surveyquestion', - 'plural' => 'Surveyquestions', + 'singular' => 'Survey Question', + 'plural' => 'Survey Questions', ], 'surveyquestionoption' => [ - 'singular' => 'Surveyquestionoption', - 'plural' => 'Surveyquestionoptions', + 'singular' => 'Survey Question Option', + 'plural' => 'Survey Question Options', ], 'surveyresponse' => [ - 'singular' => 'Surveyresponse', - 'plural' => 'Surveyresponses', + 'singular' => 'Survey Response', + 'plural' => 'Survey Responses', ], 'surveyquestionresponse' => [ - 'singular' => 'Surveyquestionresponse', - 'plural' => 'Surveyquestionresponses', + 'singular' => 'Survey Question Response', + 'plural' => 'Survey Question Responses', ], 'task' => [ 'singular' => 'Task', @@ -1300,20 +1312,20 @@ 'plural' => 'Securitygroups audit', ], 'surveyquestionoptions_audit' => [ - 'singular' => 'Surveyquestionoptions audit', - 'plural' => 'Surveyquestionoptions audit', + 'singular' => 'Survey Question Options audit', + 'plural' => 'Survey Question Options audit', ], 'surveyquestionresponses_audit' => [ - 'singular' => 'Surveyquestionresponses audit', - 'plural' => 'Surveyquestionresponses audit', + 'singular' => 'Survey Question Responses audit', + 'plural' => 'Survey Question Responses audit', ], 'surveyquestions_audit' => [ - 'singular' => 'Surveyquestions audit', - 'plural' => 'Surveyquestions audit', + 'singular' => 'Survey Questions audit', + 'plural' => 'Survey Questions audit', ], 'surveyresponses_audit' => [ - 'singular' => 'Surveyresponses audit', - 'plural' => 'Surveyresponses audit', + 'singular' => 'Survey Responses audit', + 'plural' => 'Survey Responses audit', ], 'surveys_audit' => [ 'singular' => 'Surveys audit', @@ -1445,10 +1457,10 @@ 'securitygroups_users' => 'Securitygroups users', 'securitygroups_default' => 'Securitygroups default', 'securitygroups_acl_roles' => 'Securitygroups acl roles', - 'surveyquestions' => 'Surveyquestions', - 'surveyquestionoptions' => 'Surveyquestionoptions', - 'surveyresponses' => 'Surveyresponses', - 'surveyquestionresponses' => 'Surveyquestionresponses', + 'surveyquestions' => 'Survey Questions', + 'surveyquestionoptions' => 'Survey Question Options', + 'surveyresponses' => 'Survey Responses', + 'surveyquestionresponses' => 'Survey Question Responses', 'tasks' => 'Tasks', 'sugarfeeds' => 'Sugarfeeds', 'users_feeds' => 'Users feeds', @@ -1498,10 +1510,10 @@ 'outbound_email_audit' => 'Outbound email audit', 'project_task_audit' => 'Project task audit', 'securitygroups_audit' => 'Securitygroups audit', - 'surveyquestionoptions_audit' => 'Surveyquestionoptions audit', - 'surveyquestionresponses_audit' => 'Surveyquestionresponses audit', - 'surveyquestions_audit' => 'Surveyquestions audit', - 'surveyresponses_audit' => 'Surveyresponses audit', + 'surveyquestionoptions_audit' => 'Survey Question Options audit', + 'surveyquestionresponses_audit' => 'Survey Question Responses audit', + 'surveyquestions_audit' => 'Survey Questions audit', + 'surveyresponses_audit' => 'Survey Responses audit', 'surveys_audit' => 'Surveys audit', ], 'settings' => [ diff --git a/src/VoyagerCrmServiceProvider.php b/src/VoyagerCrmServiceProvider.php index 91a55a0..afeaede 100644 --- a/src/VoyagerCrmServiceProvider.php +++ b/src/VoyagerCrmServiceProvider.php @@ -247,6 +247,7 @@ use Joy\VoyagerCrm\Models\UsersSignature; use Joy\VoyagerCrm\Models\Vcal; use RuntimeException; +use Joy\VoyagerDatatable\Facades\Voyager as VoyagerFacade; /** * Class VoyagerCrmServiceProvider