feat: create app payments

This commit is contained in:
2024-12-20 10:29:59 -03:00
parent aed3b906a4
commit 6e6cb32898
7 changed files with 33 additions and 0 deletions

View File

View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class PaymentsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'payments'

View File

@@ -0,0 +1,18 @@
from django.db import models
from typePay.models import TypePay
from comandas.models import Comanda
from clients.models import Client
class Payments(models.Model):
id = models.AutoField(primary_key=True)
value = models.DecimalField(max_digits=10, decimal_places=2)
type_pay = models.ForeignKey(TypePay, on_delete=models.PROTECT)
comanda = models.ForeignKey(Comanda, on_delete=models.PROTECT)
client = models.ForeignKey(Client, null=True , on_delete=models.PROTECT)
description = models.CharField(max_length=255)
datetime = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.value

View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.