Changeset 568


Ignore:
Timestamp:
Sep 9, 2013, 1:11:16 AM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Zobrazení skladových položek umístěných u zákazníka.
  • Upraveno: Při starém importu z poštovní spořitelny nastav id účtu pevně na poštovní spořitelnu.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Version.php

    r567 r568  
    11<?php
    22
    3 $Revision = 567; // Subversion revision
     3$Revision = 568; // Subversion revision
    44$DatabaseRevision = 565; // SQL structure revision
    55$ReleaseTime = '2013-09-08';
  • trunk/FormClasses.php

    r553 r568  
    606606    'Filter' => '1',
    607607  ),
    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(
    609616    'Type' => 'ManyToOne',
    610617    'Table' => 'PermissionUserAssignment',
  • trunk/Modules/Customer/Customer.php

    r546 r568  
    3636        'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''),
    3737        'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''),
     38        'Consumption' => array('Type' => 'TCustomerStockItem', 'Caption' => 'Spotřeba zařízení', 'Default' => ''),
    3839      ),
    3940    ));   
  • trunk/Modules/Finance/Import.php

    r548 r568  
    124124
    125125    $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));
    127131  }
    128132
  • trunk/Modules/Portal/Portal.php

    r567 r568  
    351351  {
    352352    $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>';
    354356      $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');
    356361    return($Output);
    357362  }
Note: See TracChangeset for help on using the changeset viewer.