Some refactoring between accounting and counter

This commit is contained in:
Skia
2016-05-30 12:23:59 +02:00
parent e75da927c3
commit 8da149c979
20 changed files with 198 additions and 272 deletions

View File

@ -1,6 +1,9 @@
from django.contrib import admin
from counter.models import Counter
from counter.models import *
# Register your models here.
admin.site.register(Customer)
admin.site.register(ProductType)
admin.site.register(Product)
admin.site.register(Counter)