Version 2.0

This commit is contained in:
2026-05-12 09:23:05 +00:00
parent f2bc048219
commit f1b68e5e78
34 changed files with 564 additions and 283 deletions

View File

@@ -88,7 +88,11 @@ return [
'end_date' => 'End Date',
'printed_at' => 'Print Date',
'signed_status' => 'Signed Status',
'contract_category_section' => 'Contract Classification',
'contract_info' => 'Contract Information',
'representative_info' => 'Representative Information',
'representative_desc' => 'Person representing the owner (if any)',
'representative' => 'Representative',
'feedback_history' => 'Feedback History',
'service_type' => 'Service Type',
'tab_all' => 'All',

View File

@@ -32,11 +32,21 @@ return [
'liquidated' => 'Liquidated',
],
// Contract Type
// Contract Category
'contract_category' => [
'ownership' => 'Ownership',
'business' => 'Business',
],
'contract_category_label' => 'Contract Category',
// Contract Type (V2)
'contract_type' => [
'sale' => 'Sale contract',
'lease' => 'Lease contract',
'bcc' => 'Business cooperation contract (BCC)',
'deposit' => 'Deposit',
'purchase' => 'Purchase',
'transfer' => 'Transfer',
'rental' => 'Rental',
'self_business' => 'Self Business',
'bcc' => 'Business Cooperation (BCC)',
],
// Labels for Select filters

View File

@@ -60,4 +60,8 @@ return [
'log_export_done' => 'Exported :tables tables, :rows rows',
'log_transfer' => ':title transferred from :from to :to',
'log_close' => 'Ticket closed: :title',
// Contract validation
'contract_duplicate_title' => 'Product already has active :category contract',
'contract_duplicate_body' => 'Product :product already has an active contract of this category with :customer. Please liquidate the existing contract before creating a new one.',
];