update model

This commit is contained in:
jp.av.dev 2020-11-15 02:19:35 -03:00
parent 617771f4d5
commit 73052ad7d4

View File

@ -1,24 +1,25 @@
from django.db import models
class Clientes(models.Model):
nombre = models.CharField(max_length=30)
direccion = models.CharField(max_length=50)
email = models.EmailField()
fono = models.CharField(max_length=10)
nombre = models.CharField(max_length = 30)
direccion = models.CharField(max_length = 50, verbose_name = "La Direcc.:")
email = models.EmailField(blank = True, null = True)
fono = models.CharField(max_length = 10)
def __str__(self):
return (self.nombre)
class Articulos(models.Model):
nombre = models.CharField(max_length=30)
seccion = models.CharField(max_length=20)
nombre = models.CharField(max_length = 30)
seccion = models.CharField(max_length = 20)
precio = models.IntegerField()
def __str__(self):
return 'Nombre: %s, Depto. %s, Precio $ %s' % (self.nombre, self.seccion, self.precio)
class Pedidos (models.Model):
numero = models.IntegerField()
fecha = models.DateField()
entregado = models.BooleanField()