Inserita setup per visualizzazione pulsante distinta controllata in report W_NRIEP_GIORN_INCA_DISP
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-01-22 12:44:50 +01:00
parent 8bea52cd36
commit 33e24f77b0

View File

@@ -0,0 +1,24 @@
package it.integry.ems.migration.model;
import it.integry.ems.migration._base.BaseMigration;
import it.integry.ems.migration._base.MigrationModelInterface;
public class Migration_20250122122135 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
createSetupQuery("SI_NO", "SI_NO", "SELECT 'S' UNION ALL SELECT 'N'");
createSetup("W_NRIEP_GIORN_INCA_DISP", "CB_CONTROLLATA", "VISIBLE", "N",
"Imposta controllata da e data del controllo sulla distinta filtrata", false, "SI_NO", false, false,
false, false, false, null, false, "SELECT 'S' UNION ALL SELECT 'N'");
}
@Override
public void down() throws Exception {
}
}