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