Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lims 2530 export batch csv #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions bika/uw/browser/batch/configure.zcml
Original file line number Diff line number Diff line change
@@ -12,4 +12,13 @@
layer="bika.lims.interfaces.IBikaLIMS"
/>

<browser:page
for="bika.lims.interfaces.IBatch"
name="batch_export"
class="bika.uw.browser.batch.view.ViewView"
attribute="batch_export"
permission="zope2.View"
layer="bika.lims.interfaces.IBikaLIMS"
/>

</configure>
6 changes: 6 additions & 0 deletions bika/uw/browser/batch/view.pt
Original file line number Diff line number Diff line change
@@ -24,6 +24,12 @@
</style>
</head>
<body>
<h1 class="documentActions">
<a class="context_action_link"
tal:attributes="href python:'%s/batch_export' % here.absolute_url()">
<img src="++resource++bika.uw.images/csv_icon.png" alt="Download CSV" title="Download CSV"/>
</a>
</h1>

<div class="table summary"
tal:define="rows python:view.summary_rows(show_empty=False)">
79 changes: 62 additions & 17 deletions bika/uw/browser/batch/view.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# coding=utf-8

import csv
from cStringIO import StringIO
from Products.CMFCore.utils import getToolByName
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile
from openpyxl import load_workbook
@@ -221,7 +222,7 @@ def detail_rows(self, show_empty=True):

return rows

def sample_pairs(self, sample):
def sample_pairs(self, sample, html=True):
"""Return the list of pairs for a single Sample.
This output decides the ordering of fields and the html that's used
to display them. html is rendered structurally in values.
@@ -235,22 +236,37 @@ def sample_pairs(self, sample):
samplematrix = schema['SampleMatrix'].get(sample)
sampledwithmetric = schema['AmountSampled'].get(sample) + ' ' + \
schema['AmountSampledMetric'].get(sample)
rows = [
(_('Sample ID'),
a(sample.absolute_url(), sample.Title()) if sample else ''),
(_('Client ID'), a(sample.absolute_url(),
sample.getClientSampleID()) if sample else ''),
(_('Analysis Requests'), ", ".join(
[a(ar.absolute_url(), ar.Title()) for ar in
sample.getAnalysisRequests()])),
(_('Sample Condition'), scond.Title() if scond else ''),
(_('Sample Type'), sampletype.Title() if sampletype else ''),
(_('Sample Matrix'), samplematrix.Title() if samplematrix else ''),
(_('Amount Sampled'), sampledwithmetric),
]
if html:
rows = [
(_('Sample ID'),
a(sample.absolute_url(), sample.Title()) if sample else ''),
(_('Client ID'),
a(sample.absolute_url(),
sample.getClientSampleID()) if sample else ''),
(_('Analysis Requests'), ", ".join(
[a(ar.absolute_url(), ar.Title()) for ar in
sample.getAnalysisRequests()])),
(_('Sample Condition'), scond.Title() if scond else ''),
(_('Sample Type'), sampletype.Title() if sampletype else ''),
(_('Sample Matrix'),
samplematrix.Title() if samplematrix else ''),
(_('Amount Sampled'), sampledwithmetric),
]
else:
rows = [
(_('Sample ID'), sample.Title() if sample else ''),
(_('Client ID'), sample.getClientSampleID() if sample else ''),
(_('Analysis Requests'), ", ".join(
[ar.Title() for ar in sample.getAnalysisRequests()])),
(_('Sample Condition'), scond.Title() if scond else ''),
(_('Sample Type'), sampletype.Title() if sampletype else ''),
(_('Sample Matrix'),
samplematrix.Title() if samplematrix else ''),
(_('Amount Sampled'), sampledwithmetric),
]
return rows

def sample_rows(self):
def sample_rows(self, html=True):
"""Return one list of key,value pairs for all samples referenced by
this batch.
"""
@@ -259,7 +275,7 @@ def sample_rows(self):
# getAnalysisRequests uses backreferences on AnalysisRequestBatch:
# so ARs are actual objects, but there could be other criteria.
ars = context.getAnalysisRequests()
pairs = [self.sample_pairs(sample) for sample in
pairs = [self.sample_pairs(sample, html) for sample in
# May be duplicate Samples (multiple ARs):
sorted(list(set([ar.getSample() for ar in ars])),
cmp=lambda x, y: cmp(x.Title(), y.Title()))
@@ -296,3 +312,32 @@ def analysis_rows(self):
analyses = [self.analysis_pairs(analysis) for analysis in analyses.values()]
return sorted(analyses, cmp=lambda x, y: cmp(x[0], y[0]))

def batch_export(self):
out = StringIO()
cw = csv.writer(out)
for row in self.summary_rows():
cw.writerow(row)
for row in self.detail_rows():
cw.writerow(row)
rows = self.sample_rows(html=False)
if rows:
cw.writerow([r[0] for r in rows[0]])
for row in rows:
cw.writerow([r[1] for r in row])
rows = self.analysis_rows()
if rows:
cw.writerow([r[0] for r in rows[0]])
for row in rows:
cw.writerow([r[1] for r in row])

result = out.getvalue()
out.close()

#stream file to browser
setheader = self.request.response.setHeader
setheader('Content-Length', len(result))
setheader('Content-Type', 'text/comma-separated-values')
filename = '%s.csv' % self.context.title
setheader('Content-Disposition', 'inline; filename=%s' % filename)
self.request.response.write(result)

Binary file added bika/uw/browser/images/csv_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.