Changeset 960 for trunk/Modules/Finance/Finance.php
- Timestamp:
- Dec 29, 2023, 11:13:39 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Finance.php
r959 r960 133 133 'Direction' => array('Type' => 'TFinanceDirection', 'Caption' => 'Směr', 'Default' => '0'), 134 134 'Items' => array('Type' => 'TFinanceOperationListGroup', 'Caption' => 'Operace', 'Default' => ''), 135 ), 136 )); 137 $this->System->FormManager->RegisterClass('FinanceBillingPeriod', array( 138 'Title' => 'Platební období', 139 'Table' => 'FinanceBillingPeriod', 140 'Items' => array( 141 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => '0'), 142 'MonthCount' => array('Type' => 'Integer', 'Caption' => 'Počet měsíců', 'Default' => '0'), 143 'Customers' => array('Type' => 'TCustomerBillingPeriod', 'Caption' => 'Zákazníci') 135 144 ), 136 145 )); … … 293 302 ), 294 303 )); 304 $this->System->FormManager->RegisterFormType('TCustomerBillingPeriod', array( 305 'Type' => 'ManyToOne', 306 'Table' => 'Member', 307 'Id' => 'Id', 308 'Ref' => 'BillingPeriod', 309 'Filter' => '1', 310 )); 295 311 $this->System->FormManager->RegisterFormType('TFinanceTreasuryCheckListTreasury', array( 296 312 'Type' => 'ManyToOne',
Note:
See TracChangeset
for help on using the changeset viewer.