Ignore:
Timestamp:
Oct 2, 2010, 7:40:25 PM (14 years ago)
Author:
george
Message:
  • Přidáno: Funkce pro zpožděné generování chybějících dokladů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/finance/bills.php

    r184 r295  
    2727   
    2828    switch($Bill['Type'])
    29           {
    30           case 'invoice':
     29    {
     30    case 'invoice':
    3131        $Output = '<table width="100%"><tr><td colspan="2">'.
    3232        '<font size="6"><div align="center">Faktura - daňový doklad</font></div>'.
     
    6262        'Datum zdanitel. plnění: '.HumanDate($Bill['TimeCreate']).'<br>'.
    6363        'Datum splatnosti: '.HumanDate($Bill['TimeDue']).'<br>';
    64         if(($Bill['TimeFrom'] != '0000-00-00 00:00:00') and ($Bill['TimeTo'] != '0000-00-00 00:00:00'))
    65           $Output .= 'Fakturované období: '.HumanDate($Bill['TimeFrom']).' - '.HumanDate($Bill['TimeTo']).'<br>';
     64        //if(($Bill['TimeFrom'] != '0000-00-00 00:00:00') and ($Bill['TimeTo'] != '0000-00-00 00:00:00'))
     65        //  $Output .= 'Fakturované období: '.HumanDate($Bill['TimeFrom']).' - '.HumanDate($Bill['TimeTo']).'<br>';
    6666        $Output .= '</td></tr>'.
    6767        '<tr><td colspan="2">'.
     
    8383        '<tr><td colspan="2"><hr></td></tr>'.
    8484        '</table>';
    85             break;
    86           case 'income':
    87                 $Output = '<table width="100%" border="1" cellspacing="0" cellpadding="3"><tr><td width="50%">'.
     85      break;
     86    case 'income':
     87    $Output = '<table width="100%" border="1" cellspacing="0" cellpadding="3"><tr><td width="50%">'.
    8888        '<strong>Firma:</strong><br>'.
    8989        'Ing. Jiří Hajda<br>'.
     
    105105        if($Subject['DIC'] != '') $Output .= 'DIČ: '.$Subject['DIC'].'<br>';
    106106        $Total = 0;
    107                 $Description = '';
     107    $Description = '';
    108108        foreach($Dodavka as $Polozka)
    109109        {
     
    114114        '<tr><td colspan="2"><strong>Částka:</strong> '.$Total.' Kč<br><br>'.
    115115        '</td></tr>'.   
    116         '<tr><td colspan="2"><strong>Účel platby:</strong><br>'.$Description.'</td></tr>'.       
    117                 '<tr><td><br><br>Podpis příjemce:</td><td><br><br>Podpis pokladníka:</td></tr>';
     116        '<tr><td colspan="2"><strong>Účel platby:</strong><br>'.$Description.'</td></tr>'.   
     117    '<tr><td><br><br>Podpis příjemce:</td><td><br><br>Podpis pokladníka:</td></tr>';
    118118        $Output .= '</table>';
    119             break;     
    120     }
    121         return($Output);
     119      break; 
     120    }
     121  return($Output);
    122122  }
    123123
Note: See TracChangeset for help on using the changeset viewer.