Changeset 886


Ignore:
Timestamp:
Nov 5, 2020, 8:53:58 PM (3 years ago)
Author:
chronos
Message:
  • Fixed: Not able to add new subject due undefined PayVAR column.
  • Fixed: Subject PSČ should be numerical field.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r885 r886  
    11<?php
    22
    3 $Revision = 885; // Subversion revision
     3$Revision = 886; // Subversion revision
    44$DatabaseRevision = 885; // SQL structure revision
    5 $ReleaseTime = strtotime('2020-09-08');
     5$ReleaseTime = strtotime('2020-11-05');
  • trunk/Modules/Finance/Manage.php

    r882 r886  
    402402      }
    403403      $Content .= '</table><br />'."\n".
    404       'Pro aktuální informace, prohlížení elektronických dokladů a možnost změny údajů se prosím přihlašte na stránkách '.
     404      'Pro aktuální informace, prohlížení elektronických dokladů a možnost změny údajů se prosím přihlaste na stránkách '.
    405405      '<a href="http://'.$Config['Web']['Host'].$Config['Web']['RootFolder'].'">http://'.
    406406      $Config['Web']['Host'].$Config['Web']['RootFolder'].'</a>.<br /><br />'."\n";
  • trunk/Modules/Subject/Subject.php

    r874 r886  
    2222      'Items' => array(
    2323        'Id' => array('Type' => 'Integer', 'Caption' => 'Identifikace', 'Default' => '', 'ReadOnly' => true),
    24         'Name' => array('Type' => 'String', 'Caption' => 'Celé jméno', 'Default' => ''),
     24        'Name' => array('Type' => 'String', 'Caption' => 'Celé jméno', 'Default' => '', 'Required' => true),
    2525        'AddressStreet' => array('Type' => 'String', 'Caption' => 'Ulice', 'Default' => ''),
    2626        'AddressTown' => array('Type' => 'String', 'Caption' => 'Město', 'Default' => ''),
    27         'AddressPSC' => array('Type' => 'String', 'Caption' => 'PSČ', 'Default' => ''),
     27        'AddressPSC' => array('Type' => 'Integer', 'Caption' => 'PSČ', 'Default' => '', 'Required' => true),
    2828        'AddressCountry' => array('Type' => 'TCountry', 'Caption' => 'Země', 'Default' => ''),
    2929        'IC' => array('Type' => 'String', 'Caption' => 'IČ', 'Default' => ''),
    3030        'DIC' => array('Type' => 'String', 'Caption' => 'DIČ', 'Default' => ''),
     31        'PayVAT' => array('Type' => 'Boolean', 'Caption' => 'Plátce DPH', 'Default' => 0),
    3132        'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '', 'Null' => true),
    3233        'WWW' => array('Type' => 'Hyperlink', 'Caption' => 'WWW', 'Default' => ''),
  • trunk/block/index.php

    r874 r886  
    99  var $Reasons = array(
    1010    0 => 'Internet máte povolen, avšak došlo k chybě při kontrole přístupů k Internetu.',
    11     1 => 'Váš počítač má blokován přístup k internetu. Pravděpodobně je váš účet v mínusu. Přihlašte se do systému a zkontrolujte stav vašich plateb. ',
     11    1 => 'Váš počítač má blokován přístup k internetu. Pravděpodobně je váš účet v mínusu. Přihlaste se do systému a zkontrolujte stav vašich plateb. ',
    1212    2 => 'Váš účet je v mínusu. Zaplaťte prosím chybějící peníze.',
    1313    3 => 'Přistupovat k internetu můžete pouze pomocí VPN(Virtuální Privátní Sítě). Aktivujte toto připojení.',
Note: See TracChangeset for help on using the changeset viewer.