Changeset 941
- Timestamp:
- Aug 2, 2022, 5:41:41 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Form.php
r923 r941 83 83 $Item = $this->Definition['Items'][$Index]; 84 84 $UseType = $this->GetItemType($Item); 85 return $this->FormManager->Type->ExecuteTypeEvent($UseType, $Event, 85 86 $Result = $this->FormManager->Type->ExecuteTypeEvent($UseType, $Event, 86 87 array('Value' => $this->Values[$Index], 'Name' => $Index, 87 88 'Type' => $Item['Type'], 'Values' => $this->Values, 88 89 'Filter' => $this->Values[$Index])); 90 if ($Result == null) return ''; 91 return $Result; 89 92 } 90 93 -
trunk/Modules/Customer/Customer.php
r939 r941 39 39 'Consumption' => array('Type' => 'TCustomerStockSerialNumber', 'Caption' => 'Spotřeba zařízení', 'Default' => ''), 40 40 'Contract' => array('Type' => 'TContract', 'Caption' => 'Smlouva', 'Default' => '', 'Null' => true), 41 'PaymentEmailTime' => array('Type' => 'DateTime', 'Caption' => 'Čas platebního emailu', 'Default' => ' NOW()', 'Null' => true, 'NotInList' => true),41 'PaymentEmailTime' => array('Type' => 'DateTime', 'Caption' => 'Čas platebního emailu', 'Default' => 'now', 'Null' => true, 'NotInList' => true), 42 42 'ChangeAction' => array('Type' => 'TActionEnum', 'Caption' => 'Změna - akce', 'Default' => '', 'Null' => true), 43 43 'ChangeTime' => array('Type' => 'DateTime', 'Caption' => 'Změna - čas', 'Default' => '', 'Null' => true, 'NotInList' => true),
Note:
See TracChangeset
for help on using the changeset viewer.