mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-23 08:22:15 +00:00
Basic working invoice system. Need to add a way to create invoices.
This commit is contained in:
17
RIGS/migrations/0017_auto_20150129_2041.py
Normal file
17
RIGS/migrations/0017_auto_20150129_2041.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
('RIGS', '0016_auto_20150127_1905'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='invoice',
|
||||
options={'permissions': (('view_invoice', 'Can view Invoices'),)},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user