Files
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- Added comprehensive AI Assistant system (aiassist/ directory):
  * Vector search and embedding capabilities
  * Typebot proxy integration
  * Elastic search functionality
  * Message classification and chat history
  * MCP proxy for external integrations

- Implemented Court Status API (GetCourtStatus.php):
  * Real-time court document status checking
  * Integration with external court systems
  * Comprehensive error handling and logging

- Enhanced S3 integration:
  * Improved file backup system with metadata
  * Batch processing capabilities
  * Enhanced error logging and recovery
  * Copy operations with URL fixing

- Added Telegram contact creation API
- Improved error logging across all modules
- Enhanced callback system for AI responses
- Extensive backup file storage with timestamps
- Updated documentation and README files

- File storage improvements:
  * Thousands of backup files with proper metadata
  * Fix operations for broken file references
  * Project-specific backup and recovery systems
  * Comprehensive file integrity checking

Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
2025-10-16 11:17:21 +03:00

126 lines
5.9 KiB
PHP

<?php
/* * *******************************************************************************
* The content of this file is subject to the PDF Maker license.
* ("License"); You may not use this file except in compliance with the License
* The Initial Developer of the Original Code is IT-Solutions4You s.r.o.
* Portions created by IT-Solutions4You s.r.o. are Copyright(C) IT-Solutions4You s.r.o.
* All Rights Reserved.
* ****************************************************************************** */
class PDFMaker_Field_Model extends Vtiger_Field_Model
{
/**
* Function to get all the supported advanced filter operations
* @return <Array>
*/
public static function getAdvancedFilterOptions()
{
return array(
'is' => 'is',
'contains' => 'contains',
'does not contain' => 'does not contain',
'starts with' => 'starts with',
'ends with' => 'ends with',
'is empty' => 'is empty',
'is not empty' => 'is not empty',
'less than' => 'less than',
'greater than' => 'greater than',
'does not equal' => 'does not equal',
'less than or equal to' => 'less than or equal to',
'greater than or equal to' => 'greater than or equal to',
'before' => 'before',
'after' => 'after',
'between' => 'between',
);
}
/**
* Function to get the advanced filter option names by Field type
* @return <Array>
*/
public static function getAdvancedFilterOpsByFieldType()
{
return array(
'string' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'salutation' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'text' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'url' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'email' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'phone' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'integer' => array('equal to', 'less than', 'greater than', 'does not equal', 'less than or equal to', 'greater than or equal to'),
'double' => array('equal to', 'less than', 'greater than', 'does not equal', 'less than or equal to', 'greater than or equal to'),
'currency' => array('equal to', 'less than', 'greater than', 'does not equal', 'less than or equal to', 'greater than or equal to', 'is not empty'),
'currencyList' => array('equal to', 'less than', 'greater than', 'does not equal', 'less than or equal to', 'greater than or equal to', 'is not empty'),
'picklist' => array('is', 'is not', 'is empty', 'is not empty'),
'multipicklist' => array('is', 'is not', 'contains', 'does not contain'),
'datetime' => array(
'is',
'is not',
'before',
'after',
'is today',
'is tomorrow',
'is yesterday',
'less than hours before',
'less than hours later',
'more than hours before',
'more than hours later',
'less than days ago',
'less than days later',
'more than days ago',
'more than days later',
'days ago',
'days later',
'is empty',
'is not empty'
),
'time' => array('is', 'is not', 'is not empty'),
'date' => array(
'is',
'is not',
'between',
'before',
'after',
'is today',
'less than days ago',
'more than days ago',
'in less than',
'in more than',
'days ago',
'days later',
'is not empty',
'more than days later',
'in less than',
'in more than',
'days ago',
'days later',
'is empty',
'is not empty'
),
'boolean' => array('is', 'is not'),
'reference' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'owner' => array('is', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'recurrence' => array('is', 'is not'),
'comment' => array('is'),
'image' => array('is', 'is not', 'contains', 'does not contain', 'starts with', 'ends with', 'is empty', 'is not empty'),
'percentage' => array('equal to', 'less than', 'greater than', 'does not equal', 'less than or equal to', 'greater than or equal to', 'is not empty'),
'documentsFolder' => array('is', 'contains', 'does not contain', 'starts with', 'ends with'),
);
}
/**
* Function to get comment field which will useful in creating conditions
* @param <Vtiger_Module_Model> $moduleModel
* @return <Vtiger_Field_Model>
*/
public static function getCommentFieldForFilterConditions($moduleModel)
{
$commentField = new Vtiger_Field_Model();
$commentField->set('name', '_VT_add_comment');
$commentField->set('label', 'Comment');
$commentField->setModule($moduleModel);
$commentField->fieldDataType = 'comment';
return $commentField;
}
}