creta setup per visualizzare o meno tasto Azzera Giacenza nel report Giacenza per Partita

This commit is contained in:
2025-06-09 14:08:56 +02:00
parent 1e34e19956
commit 249d377c25

View File

@@ -0,0 +1,23 @@
package it.integry.ems.migration.model;
import it.integry.ems.migration._base.BaseMigration;
import it.integry.ems.migration._base.MigrationModelInterface;
public class Migration_20250609130610 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
createSetup("w_mgiac_part_disp", "CB_AZZERAGIAC", "VISIBLE", "N",
"Impostare S/N per visualizzare o meno il pulsante Azzera Giacenza", false, null, false, false,
false, false, false, null, false, null);
}
@Override
public void down() throws Exception {
}
}