Changeset 943


Ignore:
Timestamp:
Dec 6, 2022, 8:59:12 PM (17 months ago)
Author:
chronos
Message:
  • Fixed: Finance operation and invoce modified items in IS were not updated with correct value.
Location:
trunk/Modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Customer/Customer.php

    r941 r943  
    119119    ));
    120120    $this->System->FormManager->RegisterClass('AddressPlace', array(
    121       'Title' => 'Adresní místno',
     121      'Title' => 'Adresní místo',
    122122      'Table' => 'AddressPlace',
    123123      'DefaultSortColumn' => 'HouseNumber',
  • trunk/Modules/Finance/Finance.php

    r933 r943  
    7474      'AfterInsert' => array($this, 'AfterInsertFinanceOperation'),
    7575      'BeforeModify' => array($this, 'BeforeModifyFinanceOperation'),
     76      'AfterModify' => array($this, 'BeforeModifyFinanceOperation'),
    7677      'ItemActions' => array(
    7778        array('Caption' => 'Přegenerovat doklad', 'URL' => '/finance/sprava/?Operation=RegenerateOperation&i=#RowId'),
     
    181182      'AfterInsert' => array($this, 'AfterInsertFinanceInvoice'),
    182183      'BeforeModify' => array($this, 'BeforeModifyFinanceInvoice'),
     184      'AfterModify' => array($this, 'BeforeModifyFinanceInvoice'),
    183185      'ItemActions' => array(
    184186        array('Caption' => 'Přegenerovat doklad', 'URL' => '/finance/sprava/?Operation=RegenerateInvoice&i=#RowId'),
     
    453455      'SQL' => 'SELECT Id, DateEnd, DateStart FROM FinanceYear',
    454456      'DefaultSortColumn' => 'Id',
     457      'DefaultSortOrder' => 1,
    455458      'Items' => array(
    456459        'Id' => array('Type' => 'TFinanceYear', 'Caption' => 'Rok', 'Default' => '',
Note: See TracChangeset for help on using the changeset viewer.