Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
WMS Server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Software
WMS Server
Commits
8e610c91
Commit
8e610c91
authored
Sep 16, 2019
by
Nicolas Lenz
❄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing line break in csv
parent
a27ca08b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/Handler/Container.hs
src/Handler/Container.hs
+3
-1
No files found.
src/Handler/Container.hs
View file @
8e610c91
...
...
@@ -48,5 +48,7 @@ getContainersCsvR :: Handler TypedContent
getContainersCsvR
=
do
allocsE
<-
runDB
$
selectList
[]
[]
let
allocs
=
entityVal
<$>
(
allocsE
::
[
Entity
Allocation
])
let
csv
=
"Container,Amount,Location
\n
"
<>
concatMap
(
\
a
->
tshow
(
allocationContainer
a
)
<>
","
<>
tshow
(
allocationAmount
a
)
<>
","
<>
tshow
(
allocationLocation
a
))
allocs
let
csv
=
"Container,Amount,Location
\n
"
<>
concatMap
allocToRow
allocs
return
$
TypedContent
"text/csv"
(
toContent
csv
)
where
allocToRow
a
=
tshow
(
allocationContainer
a
)
<>
","
<>
tshow
(
allocationAmount
a
)
<>
","
<>
tshow
(
allocationLocation
a
)
<>
"
\n
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment