Changeset 960
- Timestamp:
- Dec 29, 2023, 11:13:39 AM (10 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r959 r960 1 1 <?php 2 2 3 $Revision = 9 59; // Subversion revision3 $Revision = 960; // Subversion revision 4 4 $DatabaseRevision = 957; // SQL structure revision 5 5 $ReleaseTime = strtotime('2023-12-29'); -
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', -
trunk/Modules/Finance/FinanceModels.php
r923 r960 34 34 public string $DirectoryId; 35 35 public string $Rounding; 36 public int $PayingUsers; 36 37 37 38 function LoadMonthParameters(int $Period = 1) // 0 - now, 1 - next month -
trunk/Packages/Common/ModelDesc.php
r949 r960 147 147 { 148 148 public ?string $Default; 149 public int $MaxLength; 149 150 150 151 function __construct(string $Name)
Note:
See TracChangeset
for help on using the changeset viewer.