refs #6156 new field #1718
No reviewers
Labels
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#1718
Loading…
Reference in New Issue
No description provided.
Delete Branch "6156-advanceTicketsNewField"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
✅verdnatura/salix-front#688
WIP: refs #6156 new fieldto refs #6156 new field@ -39,4 +47,0 @@
origin.agencyModeFk futureAgencyModeFk,
dest.lines,
dest.liters,
origin.futureLines - origin.hasStock AS notMovableLines,
esta linea on queda?
Este código está hecho de hace 1 año, lo reviso
f9a25617f0
@ -1,2 +2,3 @@
DELIMITER $$
CREATE OR REPLACE DEFINER=`vn`@`localhost` PROCEDURE `vn`.`ticket_canAdvance`(vDateFuture DATE, vDateToAdvance DATE, vWarehouseFk INT)
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`ticket_canAdvance`(vDateFuture DATE, vDateToAdvance DATE, vWarehouseFk INT)
https://chat.verdnatura.es/group/vn-database?msg=XWo5rMzLLpytj9N2M açò que has posat no es distint?
Este código está hecho de hace 1 año, lo reviso
f70f475223
@ -109,3 +94,1 @@
t.companyFk,
t.landed,
t.agencyModeFk
CONCAT_WS(':',
CONCAT_WS(':',
COALESCE(HOUR(t.shipped), HOUR(zc.hour), HOUR(z.hour)),
COALESCE(MINUTE(t.shipped), MINUTE(zc.hour), MINUTE(z.hour))
) AS preparation
mira a vore si açò es lo mateix es mes compacte
615f57b2e6
@ -124,2 +117,2 @@
) dest ON dest.addressFk = origin.addressFk
WHERE origin.hasStock;
) dest ON dest.addressFk = origin.futureAddressFk
WHERE origin.hasStock != 0;
!= 0 es redundant, a mes en tot cas seria FALSE, jo el deixaria com estava
c407dde7a0
@ -0,0 +1,12 @@
-- Place your SQL code here
CREATE TABLE IF NOT EXISTS `vn`.`ticketCanAdvanceConfig` (
`id` INT auto_increment NULL,
copia l'estructura d eles taules config. no deu ser autoincrement i crec que tenen triggers o algo
Este código está hecho de hace 1 año, lo reviso
Tienen diferente configuración:
db/versions/11175-pinkChico/00-firstScript.sql
db/versions/11194-orangeOrchid/00-firstScript.sql
Cual aplico?
773933ca3c
@ -19,0 +19,4 @@
ENGINE = MEMORY;
INSERT INTO tStock(itemFk, amount)
SELECT itemFk, SUM(quantity) amount FROM
esto no me gusta porque esta como repetido de otros procs, o de las vistas entryIn, que lo revise @pablone
commit con las correcciones
92f305b9fd
#2948