Finish Hotfix-100
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit is unstable
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit is unstable
This commit is contained in:
@@ -86,6 +86,7 @@ public enum IntegryCustomer {
|
|||||||
MFI(IntegryCustomerDB.MFI_FashionGroup),
|
MFI(IntegryCustomerDB.MFI_FashionGroup),
|
||||||
Midel(IntegryCustomerDB.Midel_Midel),
|
Midel(IntegryCustomerDB.Midel_Midel),
|
||||||
Morgante(IntegryCustomerDB.Morgante_Morgante),
|
Morgante(IntegryCustomerDB.Morgante_Morgante),
|
||||||
|
Querceta(IntegryCustomerDB.Querceta_MasserieAmiche),
|
||||||
ResinaColor(IntegryCustomerDB.ResinaColor_ResinaColor),
|
ResinaColor(IntegryCustomerDB.ResinaColor_ResinaColor),
|
||||||
RistoCash(IntegryCustomerDB.RistoCash_RistoCash),
|
RistoCash(IntegryCustomerDB.RistoCash_RistoCash),
|
||||||
RossoGargano(IntegryCustomerDB.RossoGargano_RossoGargano, IntegryCustomerDB.RossoGargano_RossoGarganoCont),
|
RossoGargano(IntegryCustomerDB.RossoGargano_RossoGargano, IntegryCustomerDB.RossoGargano_RossoGarganoCont),
|
||||||
|
|||||||
@@ -134,6 +134,9 @@ public enum IntegryCustomerDB {
|
|||||||
Morgante_Morgante("morgante"),
|
Morgante_Morgante("morgante"),
|
||||||
|
|
||||||
|
|
||||||
|
Querceta_MasserieAmiche("masserie_amiche"),
|
||||||
|
|
||||||
|
|
||||||
ResinaColor_ResinaColor("resinacolor"),
|
ResinaColor_ResinaColor("resinacolor"),
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package it.integry.ems.migration.model;
|
package it.integry.ems.migration.model;
|
||||||
|
|
||||||
import it.integry.ems.migration._base.BaseMigration;
|
import it.integry.ems.migration._base.BaseMigration;
|
||||||
|
import it.integry.ems.migration._base.IntegryCustomer;
|
||||||
import it.integry.ems.migration._base.MigrationModelInterface;
|
import it.integry.ems.migration._base.MigrationModelInterface;
|
||||||
|
|
||||||
public class Migration_20250307174630 extends BaseMigration implements MigrationModelInterface {
|
public class Migration_20250307174630 extends BaseMigration implements MigrationModelInterface {
|
||||||
@@ -10,6 +11,10 @@ public class Migration_20250307174630 extends BaseMigration implements Migration
|
|||||||
if (isHistoryDB())
|
if (isHistoryDB())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (!existsColumn("jtb_clav_ind", "tipo_costo")){
|
||||||
|
executeStatement("ALTER TABLE jtb_clav_ind ADD COLUMN tipo_costo VARCHAR(20)");
|
||||||
|
}
|
||||||
|
|
||||||
createOrUpdateFunction("f_ExplodeDistProdCosti", "CREATE Function [dbo].[f_ExplodeDistProdCosti] ( @as_codPArent varchar(15), \n" +
|
createOrUpdateFunction("f_ExplodeDistProdCosti", "CREATE Function [dbo].[f_ExplodeDistProdCosti] ( @as_codPArent varchar(15), \n" +
|
||||||
" @as_codProd varchar(15), \n" +
|
" @as_codProd varchar(15), \n" +
|
||||||
" @ac_qtaProd decimal(20,5), \n" +
|
" @ac_qtaProd decimal(20,5), \n" +
|
||||||
|
|||||||
Reference in New Issue
Block a user