Changeset 568 for trunk/Modules
- Timestamp:
- Sep 9, 2013, 1:11:16 AM (12 years ago)
- Location:
- trunk/Modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Customer/Customer.php
r546 r568 36 36 'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''), 37 37 'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''), 38 'Consumption' => array('Type' => 'TCustomerStockItem', 'Caption' => 'Spotřeba zařízení', 'Default' => ''), 38 39 ), 39 40 )); -
trunk/Modules/Finance/Import.php
r548 r568 124 124 125 125 $BillCode = $this->System->Modules['Finance']->GetNextDocumentLineNumber($DocumentLine); 126 $this->Database->insert('FinanceOperation', array('Text' => $Text, 'Subject' => $Subject, 'Cash' => $Cash, 'Value' => $Value, 'Time' => TimeToMysqlDateTime($Time), 'Taxable' => $Taxable, 'BillCode' => $BillCode)); 126 // TODO: Fixed BankAccount=1 127 $this->Database->insert('FinanceOperation', array('Text' => $Text, 128 'Subject' => $Subject, 'Cash' => $Cash, 'Value' => $Value, 129 'Time' => TimeToMysqlDateTime($Time), 'Taxable' => $Taxable, 'BillCode' => $BillCode, 130 'BankAccount' => 1)); 127 131 } 128 132 -
trunk/Modules/Portal/Portal.php
r567 r568 351 351 { 352 352 $Output = ''; 353 if($this->System->User->User['Id'] != null) 353 if($this->System->User->User['Id'] != null) 354 { 355 $Output .= '<div class="Centred"><table id="MainTable"><tr><td>'; 354 356 $Output .= $this->Panel('Nabídka uživatele', $this->UserPanel()); 355 else $Output .= $this->SystemMessage('Oprávnění', 'Nejste přihlášen'); 357 $Output .= '</td><td>'; 358 //$Output .= $this->Panel('Přehled', $this->UserPanel()); 359 $Output .= '</td></tr></table></div>'; 360 } else $Output .= $this->SystemMessage('Oprávnění', 'Nejste přihlášen'); 356 361 return($Output); 357 362 }
Note:
See TracChangeset
for help on using the changeset viewer.