- 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.
36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<?xml version='1.0'?>
|
|
<schema>
|
|
<tables>
|
|
<table>
|
|
<name>sp_payments</name>
|
|
<sql><![CDATA[CREATE TABLE `sp_payments` (
|
|
`payid` int(19) NOT NULL DEFAULT '0',
|
|
`pay_no` varchar(100) NOT NULL,
|
|
`pay_date` date NOT NULL,
|
|
`pay_details` varchar(255) DEFAULT NULL,
|
|
`pay_type` varchar(100) DEFAULT NULL,
|
|
`payer` int(19) NOT NULL DEFAULT '0',
|
|
`doc_no` int(19) DEFAULT NULL,
|
|
`related_to` int(19) NOT NULL DEFAULT '0',
|
|
`type_payment` varchar(100) DEFAULT NULL,
|
|
`amount` decimal(25,8) DEFAULT NULL,
|
|
`spstatus` varchar(200) DEFAULT NULL,
|
|
`debit` varchar(100) DEFAULT NULL,
|
|
`coracc_subacc` varchar(100) DEFAULT NULL,
|
|
`analytics_code` varchar(100) DEFAULT NULL,
|
|
`target_code` varchar(100) DEFAULT NULL,
|
|
`spcompany` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT 'Default',
|
|
PRIMARY KEY (`payid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
<table>
|
|
<name>sp_paymentscf</name>
|
|
<sql><![CDATA[CREATE TABLE `sp_paymentscf` (
|
|
`payid` int(19) NOT NULL DEFAULT '0',
|
|
`tags` varchar(1) DEFAULT NULL,
|
|
PRIMARY KEY (`payid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8]]></sql>
|
|
</table>
|
|
</tables>
|
|
</schema>
|