feat: refs #8124 Enrutadores nuevos requerimientos
gitea/salix/pipeline/pr-dev This commit looks good
Details
gitea/salix/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
13204003d9
commit
d08b0ccdaa
|
@ -7,11 +7,15 @@
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS vn.workCenterConfig (
|
CREATE TABLE IF NOT EXISTS vn.workCenterConfig (
|
||||||
`workCenterFk` INT(11) NOT NULL,
|
`workCenterFk` INT(11) NOT NULL,
|
||||||
`deliveryManAdjustment` DECIMAL(4,2) DEFAULT NULL COMMENT 'Número de trabajadores para equilibrar los repartidores de diferentes centros. Utilizado en repartidores de grafana',
|
`deliveryManAdjustment` DECIMAL(4,2) DEFAULT NULL
|
||||||
|
COMMENT 'Número de trabajadores para equilibrar los repartidores de diferentes centros.
|
||||||
|
Utilizado en repartidores de grafana',
|
||||||
`distributionM3Category1` decimal(5,2) DEFAULT NULL,
|
`distributionM3Category1` decimal(5,2) DEFAULT NULL,
|
||||||
`distributionM3Category2` decimal(5,2) DEFAULT NULL,
|
`distributionM3Category2` decimal(5,2) DEFAULT NULL,
|
||||||
`distributionCat4M3` DECIMAL(5,2) DEFAULT NULL COMMENT 'Comisión por gestión de la distribución Cat IV',
|
`distributionCat4M3` DECIMAL(5,2) DEFAULT NULL
|
||||||
`distributionCat5M3` DECIMAL(5,2) DEFAULT NULL COMMENT 'Comisión por gestión de la distribución Cat V',
|
COMMENT 'Comisión por gestión de la distribución Cat IV',
|
||||||
|
`distributionCat5M3` DECIMAL(5,2) DEFAULT NULL
|
||||||
|
COMMENT 'Comisión por gestión de la distribución Cat V',
|
||||||
PRIMARY KEY (`workCenterFk`),
|
PRIMARY KEY (`workCenterFk`),
|
||||||
CONSTRAINT `workCenterConfig_workCenterFk` FOREIGN KEY (`workCenterFk`)
|
CONSTRAINT `workCenterConfig_workCenterFk` FOREIGN KEY (`workCenterFk`)
|
||||||
REFERENCES `workCenter` (`id`) ON UPDATE CASCADE ON DELETE RESTRICT
|
REFERENCES `workCenter` (`id`) ON UPDATE CASCADE ON DELETE RESTRICT
|
||||||
|
@ -42,3 +46,6 @@
|
||||||
ALTER TABLE vn.workerDistributionCategory ADD CONSTRAINT workerDistributionCategory_country_FK FOREIGN KEY (countryFk)
|
ALTER TABLE vn.workerDistributionCategory ADD CONSTRAINT workerDistributionCategory_country_FK FOREIGN KEY (countryFk)
|
||||||
REFERENCES vn.country(id) ON DELETE RESTRICT ON UPDATE CASCADE;
|
REFERENCES vn.country(id) ON DELETE RESTRICT ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
ALTER TABLE vn.workerDistributionCategory ADD IF NOT EXISTS commissionSplitWorkers INT UNSIGNED NOT NULL DEFAULT 1
|
||||||
|
COMMENT 'Número de enrutadores entr los que se reparte la comsión';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue