source: trunk/Modules/Subject/Subject.php@ 899

Last change on this file since 899 was 899, checked in by chronos, 4 years ago
File size: 8.1 KB
Line 
1<?php
2
3class ModuleSubject extends Module
4{
5 function __construct(System $System)
6 {
7 parent::__construct($System);
8 $this->Name = 'Subject';
9 $this->Version = '1.0';
10 $this->Creator = 'Chronos';
11 $this->License = 'GNU/GPLv3';
12 $this->Description = 'Subject management';
13 $this->Dependencies = array(ModuleUser::GetName(), ModuleMap::GetName());
14 $this->Models = array(Subject::GetClassName(), ContactCategory::GetClassName(),
15 Contact::GetClassName());
16 }
17
18 function DoStart(): void
19 {
20 $this->System->FormManager->RegisterClass('Subject', array(
21 'Title' => 'Subjekty',
22 'Table' => 'Subject',
23 'DefaultSortColumn' => 'Name',
24 'Items' => array(
25 'Id' => array('Type' => 'Integer', 'Caption' => 'Identifikace', 'Default' => '', 'ReadOnly' => true),
26 'Name' => array('Type' => 'String', 'Caption' => 'Celé jméno', 'Default' => '', 'Required' => true),
27 'AddressStreet' => array('Type' => 'String', 'Caption' => 'Ulice', 'Default' => ''),
28 'AddressTown' => array('Type' => 'String', 'Caption' => 'Město', 'Default' => ''),
29 'AddressPSC' => array('Type' => 'Integer', 'Caption' => 'PSČ', 'Default' => '', 'Required' => true),
30 'AddressCountry' => array('Type' => 'TCountry', 'Caption' => 'Země', 'Default' => ''),
31 'IC' => array('Type' => 'String', 'Caption' => 'IČ', 'Default' => ''),
32 'DIC' => array('Type' => 'String', 'Caption' => 'DIČ', 'Default' => ''),
33 'PayVAT' => array('Type' => 'Boolean', 'Caption' => 'Plátce DPH', 'Default' => 0),
34 'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '', 'Null' => true),
35 'WWW' => array('Type' => 'Hyperlink', 'Caption' => 'WWW', 'Default' => ''),
36 'Note' => array('Type' => 'String', 'Caption' => 'Poznámka', 'Default' => ''),
37 'Customer' => array('Type' => 'TMemberListSubject', 'Caption' => 'Členové', 'Default' => ''),
38 'Operations' => array('Type' => 'TFinanceOperationListSubject', 'Caption' => 'Platby', 'Default' => ''),
39 'Invoices' => array('Type' => 'TFinanceInvoiceListSubject', 'Caption' => 'Faktury', 'Default' => ''),
40 'Payment' => array('Type' => 'Float', 'Caption' => 'Placení', 'Default' => '',
41 'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => 'ROUND(IFNULL((SELECT SUM(`FinanceOperation`.`Value`) FROM `FinanceOperation` '.
42 'WHERE `FinanceOperation`.`Subject`=#Id), 0) - IFNULL((SELECT SUM(`FinanceInvoice`.`Value`) FROM `FinanceInvoice` '.
43 'WHERE `FinanceInvoice`.`Subject`=#Id), 0))'),
44 'BankAccounts' => array('Type' => 'TFinanceBankAccountListSubject', 'Caption' => 'Bankovní účty', 'Default' => ''),
45 ),
46 ));
47 $this->System->FormManager->RegisterFormType('TFinanceBankAccountListSubject', array(
48 'Type' => 'ManyToOne',
49 'Table' => 'FinanceBankAccount',
50 'Id' => 'Id',
51 'Ref' => 'Subject',
52 'Filter' => '1',
53 ));
54 $this->System->FormManager->RegisterClass('SubjectReport', array(
55 'Title' => 'Přehled subjektů',
56 'Table' => 'SubjectReport',
57 'DefaultSortColumn' => 'Id',
58 'SQL' => '(SELECT Id FROM Subject)',
59 'Items' => array(
60 'Id' => array('Type' => 'TSubject', 'Caption' => 'Subjekt', 'Default' => '', 'ReadOnly' => true),
61 'Income' => array('Type' => 'Integer', 'Caption' => 'Příjmy', 'Default' => '0', 'Suffix' => 'Kč', 'ReadOnly' => true,
62 'SQL' => '(SELECT ROUND(SUM(`FinanceOperation`.`Value`)) FROM `FinanceOperation` '.
63 'LEFT JOIN `FinanceOperationGroup` ON `FinanceOperationGroup`.`Id`=`FinanceOperation`.`Group` '.
64 'WHERE (`FinanceOperation`.`Subject` = TX.`Id`) '.
65 'AND (`FinanceOperationGroup`.`ValueSign` = 1))'),
66 'Spending' => array('Type' => 'Integer', 'Caption' => 'Výdaje', 'Default' => '0', 'Suffix' => 'Kč', 'ReadOnly' => true,
67 'SQL' => '(SELECT -ROUND(SUM(`FinanceOperation`.`Value`)) FROM `FinanceOperation` '.
68 'LEFT JOIN `FinanceOperationGroup` ON `FinanceOperationGroup`.`Id`=`FinanceOperation`.`Group` '.
69 'WHERE (`FinanceOperation`.`Subject` = TX.`Id`) '.
70 'AND (`FinanceOperationGroup`.`ValueSign` = -1))'),
71 'OperationBalance' => array('Type' => 'Integer', 'Caption' => 'Zisk', 'Default' => '0', 'Suffix' => 'Kč', 'ReadOnly' => true,
72 'SQL' => '(SELECT ROUND(SUM(`FinanceOperation`.`Value`)) FROM `FinanceOperation` WHERE (`FinanceOperation`.`Subject` = TX.`Id`) '.
73 ')'),
74 ),
75 ));
76 $this->System->FormManager->RegisterFormType('TContactCategory', array(
77 'Type' => 'Reference',
78 'Table' => 'ContactCategory',
79 'Id' => 'Id',
80 'Name' => 'Name',
81 'Filter' => '1',
82 ));
83 $this->System->FormManager->RegisterFormType('TContactListCategory', array(
84 'Type' => 'ManyToOne',
85 'Table' => 'Contact',
86 'Id' => 'Id',
87 'Ref' => 'Category',
88 'Filter' => '1',
89 ));
90 $this->System->FormManager->RegisterFormType('TContactListUser', array(
91 'Type' => 'ManyToOne',
92 'Table' => 'Contact',
93 'Id' => 'Id',
94 'Ref' => 'User',
95 'Filter' => '1',
96 ));
97 $this->System->FormManager->RegisterClass('Contact', array(
98 'Title' => 'Kontakty',
99 'Table' => 'Contact',
100 'Items' => array(
101 'Category' => array('Type' => 'TContactCategory', 'Caption' => 'Druh', 'Default' => ''),
102 'Value' => array('Type' => 'String', 'Caption' => 'Hodnota', 'Default' => ''),
103 'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => '', 'Null' => true),
104 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Subject', 'Default' => '', 'Null' => true),
105 'Description' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''),
106 'Receive' => array('Type' => 'Boolean', 'Caption' => 'Přijímat zprávy', 'Default' => '0'),
107 ),
108 ));
109 $this->System->FormManager->RegisterClass('ContactCategory', array(
110 'Title' => 'Druh kontaktu',
111 'Table' => 'ContactCategory',
112 'Items' => array(
113 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
114 'Items' => array('Type' => 'TContactListCategory', 'Caption' => 'Kontakty'),
115 ),
116 ));
117 $this->System->FormManager->RegisterFormType('TContact', array(
118 'Type' => 'Reference',
119 'Table' => 'Contact',
120 'Id' => 'Id',
121 'Name' => 'Value',
122 'Filter' => '1',
123 ));
124 $this->System->FormManager->RegisterFormType('TSubject', array(
125 'Type' => 'Reference',
126 'Table' => 'Subject',
127 'Id' => 'Id',
128 'Name' => 'Name',
129 'Filter' => '1',
130 ));
131 ModuleIS::Cast(Core::Cast($this->System)->GetModule('IS'))->RegisterDashboardItem('Subject',
132 array($this, 'ShowDashboardItem'));
133 }
134
135 function ShowDashboardItem(): string
136 {
137 $DbResult = $this->Database->select('Subject', 'COUNT(*)', '1');
138 $DbRow = $DbResult->fetch_row();
139 $Output = 'Subjektů: '.$DbRow['0'].'<br/>';
140 return $Output;
141 }
142}
143
144class Subject extends Model
145{
146 static function GetModelDesc(): ModelDesc
147 {
148 $Desc = new ModelDesc(self::GetClassName());
149 $Desc->AddString('Name');
150 $Desc->AddString('AddressStreet');
151 $Desc->AddString('AddressTown');
152 $Desc->AddString('AddressPSC');
153 $Desc->AddReference('AddressCountry', Country::GetClassName(), true);
154 $Desc->AddString('IC');
155 $Desc->AddString('DIC');
156 $Desc->AddBoolean('PayVAT');
157 $Desc->AddReference('MapPosition', MapPosition::GetClassName(), true);
158 $Desc->AddString('WWW');
159 $Desc->AddString('Note');
160 return $Desc;
161 }
162}
163
164class Contact extends Model
165{
166 static function GetModelDesc(): ModelDesc
167 {
168 $Desc = new ModelDesc(self::GetClassName());
169 $Desc->AddReference('Category', ContactCategory::GetClassName(), true);
170 $Desc->AddString('Value');
171 $Desc->AddReference('Subject', Subject::GetClassName(), true);
172 $Desc->AddReference('User', User::GetClassName(), true);
173 $Desc->AddString('Description');
174 $Desc->AddBoolean('Receive');
175 return $Desc;
176 }
177}
178
179class ContactCategory extends Model
180{
181 static function GetModelDesc(): ModelDesc
182 {
183 $Desc = new ModelDesc(self::GetClassName());
184 $Desc->AddString('Name');
185 return $Desc;
186 }
187}
Note: See TracBrowser for help on using the repository browser.