Ignore:
Timestamp:
Feb 18, 2009, 12:16:11 PM (16 years ago)
Author:
george
Message:
  • Přidáno: Částečná podpora pro dokladové řady.
  • Přidáno: Zobrazování měsíčních investic v přehledu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/www/finance/include.php

    r87 r160  
    6666        break;
    6767      case 3:
    68         $Tarify[$Index]['price'] = 0;
     68        $Tarify[$Index]['price'] = $BaseTariffPrice + round($TopTariffPrice * $Tarif['price_units']);
    6969        $Tarify[$Index]['min_speed'] = $Tarify[$Index]['min_speed'] * 1024;
    7070        $Tarify[$Index]['max_speed'] = $Tarify[$Index]['max_speed'] * 1024;
     
    120120}
    121121
     122function GetNextDocumentLineNumber($Id)
     123{
     124  global $Database;
     125
     126  $DbResult = $Database->query('SELECT Shortcut, NextNumber FROM DocumentLine WHERE Id='.$Id);
     127  $DbRow = $DbResult->fetch_assoc();
     128  $Result = $DbRow['Shortcut'].$DbRow['NextNumber'];
     129  $Database->query('UPDATE DocumentLine SET NextNumber = NextNumber + 1 WHERE Id='.$Id);
     130  return($Result);
     131}
     132
     133
    122134?>
Note: See TracChangeset for help on using the changeset viewer.