Changeset 546
- Timestamp:
- Jun 13, 2013, 12:29:37 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Customer/Customer.php
r545 r546 3 3 class ModuleCustomer extends AppModule 4 4 { 5 function __construct($ Database, $System)5 function __construct($System) 6 6 { 7 parent::__construct($ Database, $System);7 parent::__construct($System); 8 8 $this->Name = 'Customer'; 9 9 $this->Version = '1.0'; -
trunk/Modules/Finance/Finance.php
r540 r546 12 12 include_once(dirname(__FILE__).'/Import.php'); 13 13 include_once(dirname(__FILE__).'/Zivnost.php'); 14 include_once(dirname(__FILE__).'/finance.php');15 14 16 15 define('TARIFF_FREE', 7); -
trunk/Modules/Finance/Manage.php
r544 r546 559 559 $FileId = $this->Database->insert_id; 560 560 $FileName = 'doklad-'.$FileId.'.pdf'; 561 $Bill = new BillInvoice( );561 $Bill = new BillInvoice($this->System); 562 562 $Bill->Database = &$this->System->Database; 563 563 $Bill->System = &$this->System; -
trunk/Modules/Network/Network.php
r538 r546 176 176 'PermanentOnline' => array('Type' => 'Boolean', 'Caption' => 'Běží stále', 'Default' => '0'), 177 177 '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), 179 179 ), 180 180 'Actions' => array( -
trunk/Modules/Stock/Stock.php
r545 r546 3 3 class ModuleStock extends AppModule 4 4 { 5 function __construct($ Database, $System)5 function __construct($System) 6 6 { 7 parent::__construct($ Database, $System);7 parent::__construct($System); 8 8 $this->Name = 'Stock'; 9 9 $this->Version = '1.0'; -
trunk/Modules/Task/Task.php
r545 r546 3 3 class ModuleTask extends AppModule 4 4 { 5 function __construct($ Database, $System)5 function __construct($System) 6 6 { 7 parent::__construct($ Database, $System);7 parent::__construct($System); 8 8 $this->Name = 'Task'; 9 9 $this->Version = '1.0'; -
trunk/ToDo.txt
r541 r546 5 5 - FinanceImportFio: Automatický import plateb z Fio banky 6 6 - 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ů 7 9 - Automatické blokování internetu při vyčerpání kreditu 8 10 - ServiceVPS: Modul pro správu VPS hostingu
Note:
See TracChangeset
for help on using the changeset viewer.