This commit is contained in:
mynah
2020-01-22 18:22:31 -06:00
parent f16d579996
commit 174f4b0756
38 changed files with 503 additions and 473 deletions

View File

@@ -1,9 +1,9 @@
insert into caja_evento
insert into curso_caja
(
cliente_nombre,
cliente_correo,
cliente_comentario,
tienda_evento_id,
curso_tienda_id,
talla_id,
cantidad,
monto,

View File

@@ -2,7 +2,7 @@ select
t.precio as precio,
c.nombre as nombre
from
tienda_evento as t
curso_tienda as t
inner join
curso as c on t.curso_id=c.id
where

View File

@@ -0,0 +1,12 @@
select
c.nombre as cnombre,
c.subnombre as csubnobre,
t.mmail as mmail,
t.fecha_inicio,
t.fecha_fin,
t.precio as cantidad
from curso_tienda as t
inner join curso as c on c.id = t.curso_id
where t.id = ? and t.estado =1
;