Skip to content
Snippets Groups Projects
Verified Commit 7b7db495 authored by Damien's avatar Damien
Browse files

FIX #12070 TIME 0:05 Fix no file + diffusionList

parent 325b0587
No related branches found
No related tags found
No related merge requests found
...@@ -401,6 +401,7 @@ UPDATE priorities SET delays = 30 WHERE delays IS NULL; ...@@ -401,6 +401,7 @@ UPDATE priorities SET delays = 30 WHERE delays IS NULL;
ALTER TABLE priorities ALTER COLUMN delays SET NOT NULL; ALTER TABLE priorities ALTER COLUMN delays SET NOT NULL;
ALTER TABLE res_letterbox ALTER COLUMN status DROP NOT NULL; ALTER TABLE res_letterbox ALTER COLUMN status DROP NOT NULL;
ALTER TABLE res_letterbox ALTER COLUMN docserver_id DROP NOT NULL; ALTER TABLE res_letterbox ALTER COLUMN docserver_id DROP NOT NULL;
ALTER TABLE res_letterbox ALTER COLUMN format DROP NOT NULL;
/* REFACTORING SUPPRESSION */ /* REFACTORING SUPPRESSION */
......
...@@ -699,8 +699,8 @@ class ResController ...@@ -699,8 +699,8 @@ class ResController
$body = $args['body']; $body = $args['body'];
if (!empty($body['diffusion'])) { if (!empty($body['diffusionList'])) {
foreach ($body['diffusion'] as $diffusion) { foreach ($body['diffusionList'] as $diffusion) {
if ($diffusion['mode'] == 'dest') { if ($diffusion['mode'] == 'dest') {
ResModel::update(['set' => ['dest_user' => $diffusion['id']], 'where' => ['res_id = ?'], 'data' => [$args['resId']]]); ResModel::update(['set' => ['dest_user' => $diffusion['id']], 'where' => ['res_id = ?'], 'data' => [$args['resId']]]);
} }
...@@ -857,12 +857,12 @@ class ResController ...@@ -857,12 +857,12 @@ class ResController
return ['errors' => 'Body tags : One or more tags do not exist']; return ['errors' => 'Body tags : One or more tags do not exist'];
} }
} }
if (!empty($body['diffusion'])) { if (!empty($body['diffusionList'])) {
if (!Validator::arrayType()->notEmpty()->validate($body['diffusion'])) { if (!Validator::arrayType()->notEmpty()->validate($body['diffusionList'])) {
return ['errors' => 'Body diffusion is not an array']; return ['errors' => 'Body diffusion is not an array'];
} }
$destFound = false; $destFound = false;
foreach ($body['diffusion'] as $key => $diffusion) { foreach ($body['diffusionList'] as $key => $diffusion) {
if ($diffusion['mode'] == 'dest') { if ($diffusion['mode'] == 'dest') {
if ($destFound) { if ($destFound) {
return ['errors' => "Body diffusion has multiple dest"]; return ['errors' => "Body diffusion has multiple dest"];
......
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