- 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.
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>vtiger_service</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_service` (
|
|
`serviceid` int(11) NOT NULL,
|
|
`service_no` varchar(100) NOT NULL,
|
|
`servicename` varchar(50) NOT NULL,
|
|
`servicecategory` varchar(200) DEFAULT NULL,
|
|
`qty_per_unit` decimal(11,2) DEFAULT '0.00',
|
|
`unit_price` decimal(25,8) DEFAULT NULL,
|
|
`sales_start_date` date DEFAULT NULL,
|
|
`sales_end_date` date DEFAULT NULL,
|
|
`start_date` date DEFAULT NULL,
|
|
`expiry_date` date DEFAULT NULL,
|
|
`discontinued` int(1) NOT NULL DEFAULT '0',
|
|
`service_usageunit` varchar(200) DEFAULT NULL,
|
|
`website` varchar(100) DEFAULT NULL,
|
|
`taxclass` varchar(200) DEFAULT NULL,
|
|
`currency_id` int(19) NOT NULL DEFAULT '1',
|
|
`commissionrate` decimal(7,3) DEFAULT NULL,
|
|
`unit_code` varchar(100) DEFAULT NULL,
|
|
PRIMARY KEY (`serviceid`),
|
|
CONSTRAINT `fk_1_vtiger_service` FOREIGN KEY (`serviceid`) REFERENCES `vtiger_crmentity` (`crmid`) ON DELETE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>vtiger_servicecf</name>
|
|
<sql><![CDATA[CREATE TABLE `vtiger_servicecf` (
|
|
`serviceid` int(19) NOT NULL DEFAULT '0',
|
|
`tags` varchar(1) DEFAULT NULL,
|
|
PRIMARY KEY (`serviceid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|