Skip to content
Snippets Groups Projects
Commit 3fa5ecf8 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #8338 fix in_signature_book true and set status SEND_MASS

parent 05f8c359
No related branches found
No related tags found
No related merge requests found
...@@ -519,6 +519,9 @@ INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, ca ...@@ -519,6 +519,9 @@ INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, ca
DELETE FROM status WHERE id = 'FRZ'; DELETE FROM status WHERE id = 'FRZ';
INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, can_be_searched, can_be_modified) VALUES ('FRZ', 'PJ gelée', 'Y', 'fa-pause', 'apps', 'Y', 'Y'); INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, can_be_searched, can_be_modified) VALUES ('FRZ', 'PJ gelée', 'Y', 'fa-pause', 'apps', 'Y', 'Y');
DELETE FROM status WHERE id = 'SEND_MASS';
INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, can_be_searched, can_be_modified) VALUES ('SEND_MASS', 'Pour publipostage', 'Y', 'fa-mail-bulk', 'apps', 'Y', 'Y');
DELETE FROM status WHERE id = 'SIGN'; DELETE FROM status WHERE id = 'SIGN';
INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, can_be_searched, can_be_modified) VALUES ('SIGN', 'PJ signée', 'Y', 'fa-check', 'apps', 'Y', 'Y'); INSERT INTO status (id, label_status, is_system, img_filename, maarch_module, can_be_searched, can_be_modified) VALUES ('SIGN', 'PJ signée', 'Y', 'fa-check', 'apps', 'Y', 'Y');
......
...@@ -361,6 +361,10 @@ class AttachmentController ...@@ -361,6 +361,10 @@ class AttachmentController
'value' => $contactForMailing['address_id'], 'value' => $contactForMailing['address_id'],
'type' => 'integer' 'type' => 'integer'
]); ]);
array_push($dataValue, [
'column' => 'in_signature_book',
'value' => 'true',
]);
$params = [ $params = [
'res_id' => $aArgs['resIdMaster'], 'res_id' => $aArgs['resIdMaster'],
......
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