Changeset 193cceb for remit/finance_core


Ignore:
Timestamp:
Feb 7, 2010, 3:27:17 AM (15 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
9447ed4
Parents:
7df1c50
git-author:
Alex Dehnert <adehnert@…> (02/07/10 03:27:17)
git-committer:
Alex Dehnert <adehnert@…> (02/07/10 03:27:17)
Message:

Approving requests creates transactions too

File:
1 edited

Legend:

Unmodified
Added
Removed
  • remit/finance_core/models.py

    r1d4c89e r193cceb  
    179179
    180180
     181LAYER_BUDGET      = 10
     182LAYER_ALLOCATION  = 20
     183LAYER_EXPENDITURE = 30
     184LAYER_CLOSEOUT    = 40
    181185layers=(
    182     (10, 'budget'),
    183     (20, 'allocation'),
    184     (30, 'expenditure'),
    185     (40, 'closeout'),
     186    (LAYER_BUDGET,      'budget'),
     187    (LAYER_ALLOCATION, 'allocation'),
     188    (LAYER_EXPENDITURE, 'expenditure'),
     189    (LAYER_CLOSEOUT,    'closeout'),
    186190)
    187191def get_layer_by_name(name):
Note: See TracChangeset for help on using the changeset viewer.