Changeset 568
- Timestamp:
- Sep 9, 2013, 1:11:16 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Version.php
r567 r568 1 1 <?php 2 2 3 $Revision = 56 7; // Subversion revision3 $Revision = 568; // Subversion revision 4 4 $DatabaseRevision = 565; // SQL structure revision 5 5 $ReleaseTime = '2013-09-08'; -
trunk/FormClasses.php
r553 r568 606 606 'Filter' => '1', 607 607 ), 608 'TPermissionUserAssignmentListUser' => array( 608 'TCustomerStockItem' => array( 609 'Type' => 'ManyToOne', 610 'Table' => 'StockItem', 611 'Id' => 'Id', 612 'Ref' => 'Location', 613 'Filter' => '1', 614 ), 615 'TPermissionUserAssignmentListUser' => array( 609 616 'Type' => 'ManyToOne', 610 617 'Table' => 'PermissionUserAssignment', -
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.