Ignore:
Timestamp:
Oct 25, 2015, 9:51:51 PM (9 years ago)
Author:
chronos
Message:
  • Modified: Now IS Dashboard is not dependent on other modules. They need to register their view to IS dashboard.
  • Fixed: Wrong sign of created finance operations from bank import.
  • Added: Storno invoices now have special groups in FinanceInvoiceGroup table.

Both Storno and previous storned documents should be linked together using new table FinanceInvoiceStorno.
Also they should be marked as not visible to user.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r747 r755  
    356356    'Filter' => '1',
    357357  ),
     358  'TFinanceInvoiceStornoListBy' => array(
     359    'Type' => 'ManyToOne',
     360    'Table' => 'FinanceInvoiceStorno',
     361    'Id' => 'Id',
     362    'Ref' => 'StornoBy',
     363    'Filter' => '1',
     364  ),
     365  'TFinanceInvoiceStornoListOf' => array(
     366    'Type' => 'ManyToOne',
     367    'Table' => 'FinanceInvoiceStorno',
     368    'Id' => 'Id',
     369    'Ref' => 'StornoOf',
     370    'Filter' => '1',
     371  ),
     372  'TFinanceInvoiceListGroup' => array(
     373    'Type' => 'ManyToOne',
     374    'Table' => 'FinanceInvoice',
     375    'Id' => 'Id',
     376    'Ref' => 'Group',
     377    'Filter' => '1',
     378  ),
    358379  'TFinanceOperationListAccount' => array(
    359380    'Type' => 'ManyToOne',
Note: See TracChangeset for help on using the changeset viewer.