Skip to content
Snippets Groups Projects
Commit ee382da6 authored by Florian Azizian's avatar Florian Azizian
Browse files

FEAT #15047 TIME 0:30 Migrate acknowledgement and transfer reply in res_attachments

parent 7fa70a29
No related branches found
No related tags found
No related merge requests found
...@@ -291,6 +291,9 @@ UPDATE actions SET component = 'sendToRecordManagementAction' where action_page ...@@ -291,6 +291,9 @@ UPDATE actions SET component = 'sendToRecordManagementAction' where action_page
UPDATE actions SET component = 'checkAcknowledgmentRecordManagementAction' where action_page = 'check_acknowledgement'; UPDATE actions SET component = 'checkAcknowledgmentRecordManagementAction' where action_page = 'check_acknowledgement';
UPDATE actions SET component = 'checkReplyRecordManagementAction' where action_page = 'check_reply'; UPDATE actions SET component = 'checkReplyRecordManagementAction' where action_page = 'check_reply';
UPDATE res_attachments SET attachment_type = 'acknowledgement_record_management' WHERE attachment_type = 'simple_attachment' AND format = 'xml' AND title = 'Accusé de réception' AND relation = 1 AND status = 'TRA';
UPDATE res_attachments SET attachment_type = 'reply_record_management' WHERE attachment_type = 'simple_attachment' AND format = 'xml' AND title = 'Réponse au transfert' AND relation = 1 AND status = 'TRA';
/* RE CREATE VIEWS */ /* RE CREATE VIEWS */
CREATE OR REPLACE VIEW res_view_letterbox AS CREATE OR REPLACE VIEW res_view_letterbox AS
SELECT r.res_id, SELECT r.res_id,
......
...@@ -294,6 +294,8 @@ define('_PRINT_FOLDER', 'Folder'); ...@@ -294,6 +294,8 @@ define('_PRINT_FOLDER', 'Folder');
define('_REDACTOR', 'Redactor'); define('_REDACTOR', 'Redactor');
define('_ASSIGNEE', 'Assignee'); define('_ASSIGNEE', 'Assignee');
define('_DOCUMENT_WITH_NOTES', 'Document with notes'); define('_DOCUMENT_WITH_NOTES', 'Document with notes');
define("_ACKNOWLEDGEMENT_RECORD_MANAGEMENT", "Acknowledgement receipt (Record management)");
define("_REPLY_RECORD_MANAGEMENT", "Transfer reply (Record management)");
define('_SUMMARY_SHEET', 'Summary sheet'); define('_SUMMARY_SHEET', 'Summary sheet');
define('_UNDEFINED', 'Undefined'); define('_UNDEFINED', 'Undefined');
......
...@@ -294,6 +294,8 @@ define('_PRINT_FOLDER', 'Dossier'); ...@@ -294,6 +294,8 @@ define('_PRINT_FOLDER', 'Dossier');
define('_REDACTOR', 'Rédacteur'); define('_REDACTOR', 'Rédacteur');
define('_ASSIGNEE', 'Attributaire'); define('_ASSIGNEE', 'Attributaire');
define('_DOCUMENT_WITH_NOTES', 'Document annoté'); define('_DOCUMENT_WITH_NOTES', 'Document annoté');
define("_ACKNOWLEDGEMENT_RECORD_MANAGEMENT", "Accusé de réception (Archivage)");
define("_REPLY_RECORD_MANAGEMENT", "Réponse au transfert (Archivage)");
define('_SUMMARY_SHEET', 'Fiche de liaison'); define('_SUMMARY_SHEET', 'Fiche de liaison');
define('_UNDEFINED', 'Non défini'); define('_UNDEFINED', 'Non défini');
...@@ -491,4 +493,4 @@ define('_CHECK_REPLY_RECORD_MANAGEMENT', 'Vérification de la réponse au transf ...@@ -491,4 +493,4 @@ define('_CHECK_REPLY_RECORD_MANAGEMENT', 'Vérification de la réponse au transf
define('_CHECK_REPLY_RECORD_MANAGEMENT_DESC', 'Vérification de la réponse au transfert du système d\'archivage électronique'); define('_CHECK_REPLY_RECORD_MANAGEMENT_DESC', 'Vérification de la réponse au transfert du système d\'archivage électronique');
define('_CHECK_ACKNOWLEDGMENT_RECORD_MANAGEMENT', 'Vérification du transfert du paquet au système d\'archivage électronique'); define('_CHECK_ACKNOWLEDGMENT_RECORD_MANAGEMENT', 'Vérification du transfert du paquet au système d\'archivage électronique');
define('_CHECK_ACKNOWLEDGMENT_RECORD_MANAGEMENT_DESC', 'Vérification du transfert du paquet au système d\'archivage électronique'); define('_CHECK_ACKNOWLEDGMENT_RECORD_MANAGEMENT_DESC', 'Vérification du transfert du paquet au système d\'archivage électronique');
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment