Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
630a42bf
Verified
Commit
630a42bf
authored
5 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #13501 TIME 0:30 Fix last resources without priority
parent
7bf26c9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/home/controllers/HomeController.php
+23
-12
23 additions, 12 deletions
src/app/home/controllers/HomeController.php
src/app/resource/models/ResModelAbstract.php
+5
-6
5 additions, 6 deletions
src/app/resource/models/ResModelAbstract.php
with
28 additions
and
18 deletions
src/app/home/controllers/HomeController.php
+
23
−
12
View file @
630a42bf
...
...
@@ -17,6 +17,7 @@ namespace Home\controllers;
use
Basket\models\BasketModel
;
use
Basket\models\RedirectBasketModel
;
use
Group\models\GroupModel
;
use
Priority\models\PriorityModel
;
use
Resource\models\ResModel
;
use
Slim\Http\Request
;
use
Slim\Http\Response
;
...
...
@@ -131,25 +132,35 @@ class HomeController
{
$lastResources
=
ResModel
::
getLastResources
([
'select'
=>
[
'r.alt_identifier'
,
'r.closing_date'
,
'r.creation_date'
,
'priorities.color as priority_color'
,
'r.process_limit_date'
,
'r.res_id'
,
'r.confidentiality'
,
'res_letterbox.alt_identifier'
,
'res_letterbox.closing_date'
,
'res_letterbox.creation_date'
,
'res_letterbox.priority'
,
'res_letterbox.process_limit_date'
,
'res_letterbox.res_id'
,
'res_letterbox.subject'
,
'res_letterbox.confidentiality'
,
'status.img_filename as status_icon'
,
'status.label_status as status_label'
,
'status.id as status_id'
,
'r.subject'
,
'status.id as status_id'
],
'limit'
=>
5
,
'userId'
=>
$GLOBALS
[
'userId'
]
]);
$priorities
=
array_column
(
$lastResources
,
'priority'
);
$priorities
=
PriorityModel
::
get
([
'select'
=>
[
'id'
,
'color'
],
'where'
=>
[
'id in (?)'
],
'data'
=>
[
$priorities
]]);
foreach
(
$lastResources
as
$key
=>
$lastResource
)
{
if
(
!
empty
(
$lastResource
[
'priority'
]))
{
foreach
(
$priorities
as
$priority
)
{
if
(
$lastResource
[
'priority'
]
==
$priority
[
'id'
])
{
$lastResources
[
$key
][
'priority_color'
]
=
$priority
[
'color'
];
}
}
}
}
return
$response
->
withJson
([
'lastResources'
=>
$lastResources
,
]);
return
$response
->
withJson
([
'lastResources'
=>
$lastResources
]);
}
public
function
getMaarchParapheurDocuments
(
Request
$request
,
Response
$response
)
...
...
This diff is collapsed.
Click to expand it.
src/app/resource/models/ResModelAbstract.php
+
5
−
6
View file @
630a42bf
...
...
@@ -133,18 +133,17 @@ abstract class ResModelAbstract
$resources
=
DatabaseModel
::
select
([
'select'
=>
$aArgs
[
'select'
],
'table'
=>
[
'history, res_letterbox
r
, status
, priorities
'
],
'table'
=>
[
'history, res_letterbox, status'
],
'where'
=>
[
'history.user_id = ?'
,
'history.table_name IN (?)'
,
'history.record_id IS NOT NULL'
,
'history.record_id != ?'
,
'history.event_id != ?'
,
'history.event_id NOT LIKE ?'
,
'CAST(history.record_id AS INT) = r.res_id'
,
'r.res_id = r.res_id'
,
'r.status != ?'
,
'r.status = status.id'
,
'r.priority = priorities.id'
'CAST(history.record_id AS INT) = res_letterbox.res_id'
,
'res_letterbox.status != ?'
,
'res_letterbox.status = status.id'
],
'data'
=>
[
$aArgs
[
'userId'
],
[
'res_letterbox'
,
'res_view_letterbox'
],
'none'
,
'linkup'
,
'attach%'
,
'DEL'
],
'groupBy'
=>
[
'r.subject'
,
'r.creation_date'
,
'r
.res_id'
,
'r
.alt_identifier'
,
'r.closing_date'
,
'r.process_limit_date'
,
'status.id'
,
'status.label_status'
,
'status.img_filename'
,
'priorities.color'
,
'priorities.label'
],
'groupBy'
=>
[
'r
es_letterbox
.subject'
,
'r
es_letterbox
.creation_date'
,
'r
es_letterbox.res_id'
,
'res_letterbox
.alt_identifier'
,
'r
es_letterbox
.closing_date'
,
'r
es_letterbox
.process_limit_date'
,
'status.id'
,
'status.label_status'
,
'status.img_filename'
],
'order_by'
=>
[
'MAX(history.event_date) DESC'
],
'limit'
=>
$aArgs
[
'limit'
]
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment