mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Stock application creation
This commit is contained in:
parent
a90a553939
commit
402a14d69a
0
stock/__init__.py
Normal file
0
stock/__init__.py
Normal file
3
stock/admin.py
Normal file
3
stock/admin.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
0
stock/migrations/__init__.py
Normal file
0
stock/migrations/__init__.py
Normal file
10
stock/models.py
Normal file
10
stock/models.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.db import models
|
||||
from django.counter import Counter
|
||||
|
||||
class Stock(models.Model):
|
||||
""" The Stock class, this one is used to know how many products are left for a specific counter """
|
||||
name = models.CharField(_('name'), max_length=64)
|
||||
counter = models.OneToOneField(Counter, verbose_name=_('counter'), related_name='stock')
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
3
stock/tests.py
Normal file
3
stock/tests.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
stock/views.py
Normal file
3
stock/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in New Issue
Block a user