Changeset 627 for trunk/Common


Ignore:
Timestamp:
Jan 2, 2014, 12:42:49 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Přejmenováno v Invoice sloupec TimeCreation na Time.
  • Přidáno: Umožnění přidávat faktury a finanční operace i pro starší neuzavřené účetní období. Rok pro dokladovou řadu se určí podle data vytvoření.
Location:
trunk/Common
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Global.php

    r599 r627  
    5353function HumanDate($Time)
    5454{
    55   $Date = explode(' ', $Time);
    56   $Parts = explode('-', $Date[0]);
    57   if($Date != '0000-00-00') return(($Parts[2]*1).'.'.($Parts[1]*1).'.'.$Parts[0]);
    58   else return(' ');
     55        if($Time != '') {               
     56    $Date = explode(' ', $Time);
     57    $Parts = explode('-', $Date[0]);
     58    if($Date != '0000-00-00') return(($Parts[2]*1).'.'.($Parts[1]*1).'.'.$Parts[0]);
     59    else return(' ');
     60        } else return(' '); 
    5961}
    6062
  • trunk/Common/Page.php

    r607 r627  
    112112      $Output .= '<div id="Footer">'.
    113113      '<i>| Správa webu: '.$this->System->Config['Web']['Admin'].' | e-mail: '.$this->System->Config['Web']['AdminEmail'].' | '.
    114       ' Verze: '.$Revision.' ('.HumanDate($ReleaseTime).') |';
     114      ' Verze: '.$Revision.' ('.$this->System->HumanDate($ReleaseTime).') |';
    115115      if($this->ShowRuntimeInfo == true) $Output .= ' Doba generování: '.$Time.' s / '.ini_get('max_execution_time').
    116116        ' s | Použitá paměť: '.HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B |';
  • trunk/Common/Setup/Updates.php

    r623 r627  
    536536}
    537537
     538function UpdateTo627($Manager)
     539{
     540        $Manager->Execute('ALTER TABLE `FinanceInvoice` CHANGE `TimeCreation` `Time` DATETIME NOT NULL DEFAULT "0000-00-00 00:00:00";');
     541        $Manager->Execute('ALTER TABLE `FinanceYear` ADD `Closed` INT NOT NULL ;');
     542}
     543
    538544class Updates
    539545{
     
    569575      615 => array('Revision' => 619, 'Function' => 'UpdateTo619'),
    570576      619 => array('Revision' => 620, 'Function' => 'UpdateTo620'),
     577      620 => array('Revision' => 627, 'Function' => 'UpdateTo627'),
    571578    ));
    572579  }
Note: See TracChangeset for help on using the changeset viewer.