Resolved conflicts
This commit is contained in:
@@ -10,7 +10,8 @@ spring.h2.console.enabled=true
|
||||
isVatCheckGloballyDisabled = false
|
||||
|
||||
isMailSendingEnabled = true
|
||||
default_System_Receiver_Email=antonio.manca@bflows.net
|
||||
isPecServiceEnabled = false
|
||||
#default_System_Receiver_Email=antonio.manca@bflows.net
|
||||
gepafin_email=rinaldo.bonazzo@bflows.net
|
||||
rinaldo_email=rinaldo.bonazzo@bflows.net
|
||||
carlo_email=test@test.test
|
||||
|
||||
@@ -9,7 +9,8 @@ spring.jpa.show-sql=true
|
||||
base-url=http://localhost:8080
|
||||
|
||||
isMailSendingEnabled = false
|
||||
default_System_Receiver_Email=test@test.test
|
||||
isPecServiceEnabled = false
|
||||
#default_System_Receiver_Email=test@test.test
|
||||
gepafin_email=test@test.test
|
||||
rinaldo_email=test@test.test
|
||||
carlo_email=test@test.test
|
||||
|
||||
@@ -16,7 +16,8 @@ spid.ipd.base.url=https://login.regione.umbria.it
|
||||
active.profile.folder=production
|
||||
|
||||
isMailSendingEnabled = true
|
||||
default_System_Receiver_Email=m.gaudino@gepafin.it,f.marinelli@gepafin.it
|
||||
isPecServiceEnabled = true
|
||||
#default_System_Receiver_Email=m.gaudino@gepafin.it,f.marinelli@gepafin.it
|
||||
gepafin_email=bandi@pec.gepafin.it
|
||||
rinaldo_email=rinaldo.bonazzo@bflows.net
|
||||
carlo_email=carlo.mancosu@bflows.net
|
||||
|
||||
@@ -7,7 +7,8 @@ spring.datasource.password=sa
|
||||
spring.h2.console.enabled=true
|
||||
base-url=http://localhost:8080
|
||||
isMailSendingEnabled = false
|
||||
default_System_Receiver_Email=test@test.test
|
||||
isPecServiceEnabled = false
|
||||
#default_System_Receiver_Email=test@test.test
|
||||
gepafin_email=test@test.test
|
||||
rinaldo_email=test@test.test
|
||||
carlo_email=test@test.test
|
||||
|
||||
@@ -2380,6 +2380,17 @@
|
||||
path="db/dump/update_system_email_template_application_rejected_04_02_2025.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="14-02-2025_PK_124000" author="Piyush Kag">
|
||||
|
||||
<addColumn tableName="COMPANY">
|
||||
<column name="JSON" type="TEXT"/>
|
||||
</addColumn>
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/insert_json_column_in_company_data_06_02_2025.sql"/>
|
||||
<dropColumn tableName="USER_WITH_COMPANY" columnName="JSON"/>
|
||||
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="06-02-2025_NK_155519" author="Nisha Kashyap">
|
||||
<addColumn tableName="call">
|
||||
<column name="number_of_check" type="numeric"></column>
|
||||
@@ -2418,4 +2429,10 @@
|
||||
<modifyDataType tableName="call" columnName="product_id" newDataType="INTEGER"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="17-02-2025_PK_025237" author="Piyush Kag">
|
||||
<renameColumn tableName="call"
|
||||
oldColumnName="product_id"
|
||||
newColumnName="appointment_template_id"/>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
UPDATE COMPANY C
|
||||
SET JSON = (
|
||||
SELECT U.JSON
|
||||
FROM USER_WITH_COMPANY U
|
||||
WHERE U.COMPANY_ID = C.ID
|
||||
AND U.JSON IS NOT NULL
|
||||
AND U.JSON <> ''
|
||||
ORDER BY U.ID ASC
|
||||
LIMIT 1
|
||||
)
|
||||
WHERE EXISTS (
|
||||
SELECT 1 FROM USER_WITH_COMPANY U
|
||||
WHERE U.COMPANY_ID = C.ID
|
||||
AND U.JSON IS NOT NULL
|
||||
AND U.JSON <> ''
|
||||
);
|
||||
@@ -378,3 +378,6 @@ formula.amount.not.matches.requested.amount= The {0} does not matches to calcula
|
||||
|
||||
|
||||
|
||||
appointment.cannot.be.created = Appointment cannot be created because call doesn't have the template id.
|
||||
appointment.not.created = Appointment not created please try again.
|
||||
validation.failed.checklist=Validation failed for checklist.
|
||||
|
||||
@@ -367,4 +367,6 @@ validation.required.requested.amount=La configurazione dell'importo richiesto
|
||||
company.id.not.null=L'ID dell'azienda non pu? essere nullo.
|
||||
formula.amount.not.matches.requested.amount=Il {0} non corrisponde all'importo calcolato.
|
||||
|
||||
|
||||
appointment.cannot.be.created = Impossibile creare l'appuntamento perché la chiamata non ha l'ID del modello di appuntamento.
|
||||
appointment.not.created = Appuntamento non creato, riprova
|
||||
validation.failed.checklist=Convalida fallita per la checklist.
|
||||
|
||||
Reference in New Issue
Block a user