detalle_servicio

This commit is contained in:
Andres2908
2022-03-29 17:43:12 -06:00
parent 975aadcbea
commit ccd18dfe77
+1 -1
View File
@@ -89,7 +89,7 @@ const agregarDetalleServicio = async (monto, numeroCuenta) => {
return conn
.query(
`INSERT INTO detalle_servicio(monto, numero_hojas, id_cuenta, id_servicio, id_usuario, id_periodo) values(${monto}, 0, ${numeroCuenta}, 4, 134)`
`INSERT INTO detalle_servicio(monto, numero_hojas, id_cuenta, id_servicio, id_usuario, id_periodo) values(${monto}, 0, ${numeroCuenta}, 4, 134, 20)`
)
.then((rows) => {
conn.end();