29 lines
635 B
PHP
29 lines
635 B
PHP
<?php
|
|
|
|
return [
|
|
'handover' => [
|
|
'not_ready' => 'Not ready',
|
|
'ready' => 'Ready',
|
|
'handed_over' => 'Handed over',
|
|
'scheduled' => 'Scheduled',
|
|
],
|
|
|
|
'service' => [
|
|
'management_fee' => 'Management fee',
|
|
'gratitude' => 'Gratitude',
|
|
'self_business' => 'Self business',
|
|
],
|
|
|
|
'contract_status' => [
|
|
'active' => 'Active',
|
|
'expired' => 'Expired',
|
|
'liquidated' => 'Liquidated',
|
|
],
|
|
|
|
'contract_type' => [
|
|
'sale' => 'Sale contract',
|
|
'lease' => 'Lease contract',
|
|
'bcc' => 'Business cooperation contract (BCC)',
|
|
],
|
|
];
|