Changeset 546


Ignore:
Timestamp:
Jun 13, 2013, 12:29:37 AM (11 years ago)
Author:
chronos
Message:
  • Opaveno: Nesprávné parametry konstruktoru některých modulů.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Customer/Customer.php

    r545 r546  
    33class ModuleCustomer extends AppModule
    44{
    5   function __construct($Database, $System)
     5  function __construct($System)
    66  {
    7     parent::__construct($Database, $System);
     7    parent::__construct($System);
    88    $this->Name = 'Customer';
    99    $this->Version = '1.0';
  • trunk/Modules/Finance/Finance.php

    r540 r546  
    1212include_once(dirname(__FILE__).'/Import.php');
    1313include_once(dirname(__FILE__).'/Zivnost.php');
    14 include_once(dirname(__FILE__).'/finance.php');
    1514
    1615define('TARIFF_FREE', 7);
  • trunk/Modules/Finance/Manage.php

    r544 r546  
    559559      $FileId = $this->Database->insert_id;
    560560      $FileName = 'doklad-'.$FileId.'.pdf';
    561       $Bill = new BillInvoice();
     561      $Bill = new BillInvoice($this->System);
    562562      $Bill->Database = &$this->System->Database;
    563563      $Bill->System = &$this->System;
  • trunk/Modules/Network/Network.php

    r538 r546  
    176176            'PermanentOnline' => array('Type' => 'Boolean', 'Caption' => 'Běží stále', 'Default' => '0'),
    177177            'Interfaces' => array('Type' => 'TInterfaceList', 'Caption' => 'Rozhraní', 'Default' => ''),
    178             'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '0'),
     178            'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '0', 'Null' => true),
    179179        ),
    180180        'Actions' => array(
  • trunk/Modules/Stock/Stock.php

    r545 r546  
    33class ModuleStock extends AppModule
    44{
    5   function __construct($Database, $System)
     5  function __construct($System)
    66  {
    7     parent::__construct($Database, $System);
     7    parent::__construct($System);
    88    $this->Name = 'Stock';
    99    $this->Version = '1.0';
  • trunk/Modules/Task/Task.php

    r545 r546  
    33class ModuleTask extends AppModule
    44{
    5   function __construct($Database, $System)
     5  function __construct($System)
    66  {
    7     parent::__construct($Database, $System);
     7    parent::__construct($System);
    88    $this->Name = 'Task';
    99    $this->Version = '1.0';
  • trunk/ToDo.txt

    r541 r546  
    55- FinanceImportFio: Automatický import plateb z Fio banky
    66- Finance: umožnit uzavření účetního roku
     7- Finance: generování chybějících dokladů generuje i doklady co se nemají generovat
     8- Finance: geberovat doklady do podsložek dle roků
    79- Automatické blokování internetu při vyčerpání kreditu
    810- ServiceVPS: Modul pro správu VPS hostingu
Note: See TracChangeset for help on using the changeset viewer.