简体   繁体   English

Python GeraldoReports-用逗号格式化总和值

[英]Python GeraldoReports - Format a summed value with commas

I'm using Geraldo Reports to create PDF reports for my Django project. 我正在使用Geraldo Reports为我的Django项目创建PDF报告。 I am stuck on how to format values that are summary values. 我被困在如何格式化汇总值的值上。
I have an ObjectValue with action=FIELD_ACTION_SUM in a report group. 我在报告组中有一个带有action=FIELD_ACTION_SUM I can't figure out how to format the returned value as a number with commas to separate the thousands. 我不知道如何将返回值格式化为带有逗号的数字,以分隔数千个数字。

I tried the get_text argument, which is listed in Geraldo Reports documentation, but not documented well on how to use it. 我尝试了get_text参数,该参数已在Geraldo Reports文档中列出,但没有很好地记录如何使用它。

My current ObjectValue: 我当前的ObjectValue:

ObjectValue(
  attribute_name='labor',
  action=FIELD_ACTION_SUM,
  left=7 * inch,
  width=.8 * inch,
  style={'alignment': TA_RIGHT},
  get_text=lambda instance, value: '{:,.2f}'.format(value),
  stores_text_in_cache=False
),

I haven't had any luck searching for solutions. 我没有任何运气寻找解决方案。 Does anyone here know what I'm doing wrong, or what I should be doing instead? 这里有人知道我在做什么错,或者我应该做什么吗?

I found an answer after much trial and error ! 经过反复尝试,我找到了答案! In my example I have a field in a queryset called 'jd_gross' which I want to total in my report....I finally abandoned the action=FIELD_ACTION_SUM section and rolled my own 在我的示例中,我在查询集中有一个名为“ jd_gross”的字段,我希望在报告中总计该字段。...我终于放弃了action = FIELD_ACTION_SUM部分,并滚动了自己的部分

in my band_detail section I can display this field with commas with the following : 在我的band_detail部分中,我可以用以下逗号显示此字段:

        ObjectValue(attribute_name='jd_gross', left=26.7*cm, width=1.7*cm, style={'alignment':TA_RIGHT}, get_value=lambda instance: intcomma(instance.jd_gross)),

The answer that works for me for the summary section however is to add to the : def init (self, *args, **kwargs): section, after the : self.band_page_header.elements += [ I used the same concept to calculate my total, convert it to a formatted string and add a line as a System Field in to my summary section as follows : 对于总结部分来说,对我有用的答案是在:self.band_page_header.elements + = [之后,我使用相同的概念来计算:def init (self,* args,** kwargs):部分:我的总计,将其转换为格式化的字符串,并在“摘要”部分中添加一行作为“系统字段”,如下所示:

    myset = self.queryset
    grosstotal = 0
    for myline in myset:
        if myline.jd_gross:
            grosstotal += myline.jd_gross
    ugrosstotal = intcomma(grosstotal)
    self.band_summary.elements += [
        SystemField(expression=ugrosstotal, top=1*cm, left=26.5*cm, width=1.9*cm, style={'alignment':TA_RIGHT}),
        ]

so my complete inherited report is now as follows : 所以我现在完整的继承报告如下:

class JobdetailsReport(DefaultReport): title = 'Job Details' page_size = landscape(A4) class JobdetailsReport(DefaultReport):标题=“作业详细信息” page_size =景观(A4)

class band_detail(DetailBand):
    height=0.7*cm
    elements=[
        ObjectValue(attribute_name='jd_job', left=0.1*cm),
        ObjectValue(attribute_name='c_name', left=1.5*cm),
        ObjectValue(attribute_name='clientname', left=5.8*cm),
        ObjectValue(attribute_name='jd_return', left=10.1*cm),
        ObjectValue(attribute_name='jd_delivery', left=12.6*cm),
        ObjectValue(attribute_name='get_j_status1_display', left=15.1*cm),
        ObjectValue(attribute_name='get_j_status2_display', left=17.6*cm),
        ObjectValue(attribute_name='jd_prodref', left=20.1*cm),
        ObjectValue(attribute_name='userformalname', left=23*cm),
        ObjectValue(attribute_name='jd_gross', left=26.7*cm, width=1.7*cm, style={'alignment':TA_RIGHT}, get_value=lambda instance: intcomma(instance.jd_gross)),
        ]
    borders = {'bottom': True}

class band_summary(ReportBand):
    height = 1.7*cm
    elements = [
        Label(text='Records printed:', top=1*cm, left=0.5*cm),
        ObjectValue(expression='count(jd_job)', top=1*cm, left=5.6*cm),
        Label(text="Total Value:", top=1*cm, left=22*cm),
        ]
    borders = {'top': True}

def __init__(self, *args, **kwargs):
    super(JobdetailsReport, self).__init__(*args, **kwargs)

    self.band_page_header.elements += [
        Label(text="Job No.", top=0.8*cm, left=0.1*cm),
        Label(text="Client", top=0.8*cm, left=1.5*cm),
        Label(text="Delivery", top=0.8*cm, left=5.8*cm),
        Label(text="Return", top=0.8*cm, left=10.1*cm),
        Label(text="Delivery", top=0.8*cm, left=12.6*cm),
        Label(text="Physical Status", top=0.8*cm, left=15.1*cm),
        Label(text="Accts Status", top=0.8*cm, left=17.6*cm),
        Label(text="Reference", top=0.8*cm, left=20.1*cm),
        Label(text="Our Contact", top=0.8*cm, left=23*cm),
        Label(text="Gross", top=0.8*cm, left=27*cm),
        ]

    myset = self.queryset
    grosstotal = 0
    for myline in myset:
        if myline.jd_gross:
            grosstotal += myline.jd_gross
    ugrosstotal = intcomma(grosstotal)
    self.band_summary.elements += [
        SystemField(expression=ugrosstotal, top=1*cm, left=26.5*cm, width=1.9*cm, style={'alignment':TA_RIGHT}),
        ]

Hope that helps you ! 希望对您有所帮助! It only took me several hours to get it to work...... 我只花了几个小时就可以开始工作……

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM