report_service.py 9.11 KB
Newer Older
pengxiong's avatar
pengxiong committed
1 2 3 4 5 6 7 8
# -*- encoding: utf-8 -*-
# -----------------------------------------------------------------------------
# @File Name  : report_service.py
# @Time       : 2021/1/13 下午3:14
# @Author     : X. Peng
# @Email      : acepengxiong@163.com
# @Software   : PyCharm
# -----------------------------------------------------------------------------
pengxiong's avatar
pengxiong committed
9
import datetime
pengxiong's avatar
pengxiong committed
10
import json
pengxiong's avatar
pengxiong committed
11 12
import os
import uuid
pengxiong's avatar
pengxiong committed
13

pengxiong's avatar
pengxiong committed
14
from sqlalchemy import and_, or_
pengxiong's avatar
pengxiong committed
15 16
# from sqlalchemy import union_all

17
from app.api.engine import TAMP_SQL, tamp_diagnose_app_engine, template_folder, temp_img_save_folder
pengxiong's avatar
pengxiong committed
18
from app.model.tamp_diagnose_app import HoldReport, HoldDiagnoseReport, PeriodicReport, Customer, ReportView
pengxiong's avatar
pengxiong committed
19
from app.utils.jinjia2html_v2 import DataIntegrate
20
from app.celery import save_pdf
pengxiong's avatar
pengxiong committed
21 22 23 24 25 26


def get_report_list(args):
    """."""
    type = args.get('type')
    ifa_id = args.get('ifa_id')
pengxiong's avatar
pengxiong committed
27
    name = args.get('name')
pengxiong's avatar
pengxiong committed
28 29 30 31 32 33
    pageNumber = args['pageNumber']
    pageSize = args['pageSize']
    start_time = args.get('start_time')
    end_time = args.get('end_time')
    offset = (pageNumber - 1) * pageSize
    res = []
pengxiong's avatar
pengxiong committed
34
    totalSize = 0
pengxiong's avatar
pengxiong committed
35 36 37 38
    conditions = ()
    if type == 0:
        conditions = [
                ReportView.ifa_id == ifa_id,
pengxiong's avatar
pengxiong committed
39
                or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%')),
pengxiong's avatar
pengxiong committed
40 41
                ReportView.create_time >= start_time,
                ReportView.create_time <= end_time
pengxiong's avatar
pengxiong committed
42 43 44 45 46
        ]
    else:
        conditions = [
                ReportView.ifa_id == ifa_id,
                ReportView.type == type,
pengxiong's avatar
pengxiong committed
47
                or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%')),
pengxiong's avatar
pengxiong committed
48 49
                ReportView.create_time >= start_time,
                ReportView.create_time <= end_time
pengxiong's avatar
pengxiong committed
50
        ]
51
    allow_field = ['id', 'customer_id', 'ifa_id', 'update_time', 'create_time', 'update_status', 'file', 'be_viewed', 'name', 'customer_name', 'author_name', 'type']
pengxiong's avatar
pengxiong committed
52 53
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
pengxiong's avatar
pengxiong committed
54
        report_res = tamp_diagnose_session.query(ReportView).filter(and_(*conditions))
pengxiong's avatar
pengxiong committed
55
        totalSize = report_res.count()
56
        report_res = report_res.order_by(ReportView.create_time.desc()).offset(offset).limit(pageSize)
pengxiong's avatar
pengxiong committed
57
        res = [r.to_dict(allow_field=allow_field) for r in report_res]
pengxiong's avatar
pengxiong committed
58

pengxiong's avatar
pengxiong committed
59
    return {
pengxiong's avatar
pengxiong committed
60
        'content': res,
pengxiong's avatar
pengxiong committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
        'pageNum': pageNumber,
        'pageSize': pageSize,
        'totalSize': totalSize
    }


def delete_report(args):
    """."""
    type = args.get('type')
    id = args.get('id')
    ifa_id = args.get('ifa_id')
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
        if type == 1:
            tamp_diagnose_session.query(HoldReport).filter(and_(
                HoldReport.ifa_id == ifa_id,
                HoldReport.id == id
            )).delete()
        elif type == 2:
            tamp_diagnose_session.query(HoldDiagnoseReport).filter(and_(
                HoldDiagnoseReport.ifa_id == ifa_id,
                HoldDiagnoseReport.id == id
            )).delete()
        elif type == 3:
            tamp_diagnose_session.query(PeriodicReport).filter(and_(
                PeriodicReport.ifa_id == ifa_id,
                PeriodicReport.id == id
            )).delete()
pengxiong's avatar
pengxiong committed
89 90 91 92 93 94 95


def get_one_report(args):
    """."""
    id = args.get('id')
    type = args.get('type')
    ifa_id = args.get('ifa_id')
pengxiong's avatar
pengxiong committed
96
    data = []
pengxiong's avatar
pengxiong committed
97 98
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
pengxiong's avatar
pengxiong committed
99 100 101
        res = tamp_diagnose_session.query(ReportView).filter(and_(
            ReportView.id == id,
            ReportView.type == type,
pengxiong's avatar
pengxiong committed
102
            ReportView.ifa_id == ifa_id,
pengxiong's avatar
pengxiong committed
103
        ))
pengxiong's avatar
pengxiong committed
104
        data = [r.to_dict() for r in res]
pengxiong's avatar
pengxiong committed
105 106 107
    if data:
        return data[0]
    return False
pengxiong's avatar
pengxiong committed
108 109 110 111 112 113 114 115


def edit_report(args):
    """编辑报告"""
    id = args.get('id')
    type = args.get('type')
    ifa_id = args.get('ifa_id')
    report_data = args.get('report_data')
pengxiong's avatar
pengxiong committed
116
    pdf_name = str(uuid.uuid4()) + '.pdf'
pengxiong's avatar
pengxiong committed
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
    res = []
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
        hold_report = tamp_diagnose_session.query(HoldReport).filter(and_(
            HoldReport.id == id,
            HoldReport.ifa_id == ifa_id,
        ))
        hold_diagnose_report = tamp_diagnose_session.query(HoldDiagnoseReport).filter(and_(
            HoldDiagnoseReport.id == id,
            HoldDiagnoseReport.ifa_id == ifa_id,
        ))
        periodic_report = tamp_diagnose_session.query(PeriodicReport).filter(and_(
            PeriodicReport.id == id,
            PeriodicReport.ifa_id == ifa_id,
        ))
        if type == 1:
            res = hold_report
        elif type == 2:
            res = hold_diagnose_report
        elif type == 3:
            res = periodic_report
        if not res:
            return False
        r = res.update({
            'report_data': report_data,
142
            'update_status': 1,
pengxiong's avatar
pengxiong committed
143 144
            'update_time': datetime.datetime.now()
        })
145
        
146
    save_pdf.delay(id, ifa_id, res[0].customer_id, pdf_name, type, report_data)
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
        # try:
        #     dt = DataIntegrate(ifa_id=ifa_id, customer_id=res[0].customer_id, pdf_name=pdf_name, type=type)
        #     dt.render_data(data=json.loads(report_data.replace(template_folder, temp_img_save_folder)))
        # except:
        #     pass
        # with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        #     tamp_diagnose_session = tamp_diagnose_app.session
        #     hold_report = tamp_diagnose_session.query(HoldReport).filter(and_(
        #         HoldReport.id == id,
        #         HoldReport.ifa_id == ifa_id,
        #     ))
        #     hold_diagnose_report = tamp_diagnose_session.query(HoldDiagnoseReport).filter(and_(
        #         HoldDiagnoseReport.id == id,
        #         HoldDiagnoseReport.ifa_id == ifa_id,
        #     ))
        #     periodic_report = tamp_diagnose_session.query(PeriodicReport).filter(and_(
        #         PeriodicReport.id == id,
        #         PeriodicReport.ifa_id == ifa_id,
        #     ))
        #     if type == 1:
        #         res = hold_report
        #     elif type == 2:
        #         res = hold_diagnose_report
        #     elif type == 3:
        #         res = periodic_report
        #     if not res:
        #         return False
        #     res.update({
        #         'file': pdf_name,
        #         'update_status': 2,
        #         'update_time': datetime.datetime.now()
        #     })
pengxiong's avatar
pengxiong committed
179
    return True
pengxiong's avatar
pengxiong committed
180 181 182 183 184 185 186 187


def make_report(args):
    """制作报告."""
    ifa_id = args.get('ifa_id')
    customer_id = args.get('customer_id')
    type = args.get('type')
    name = args.get('name')
188
    report_data = json.loads(args.get('report_data').replace(template_folder, temp_img_save_folder))
pengxiong's avatar
pengxiong committed
189
    pdf_name = str(uuid.uuid4()) + '.pdf'
190
    args['create_time'] = datetime.datetime.now()
pengxiong's avatar
pengxiong committed
191 192
    args['update_status'] = 1

pengxiong's avatar
pengxiong committed
193
    args.pop('type')
pengxiong's avatar
pengxiong committed
194 195 196 197 198 199 200 201 202 203 204 205 206
    record_id = 0
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
        report_record = None
        if type == 1:
            report_record = HoldReport(**args)
        elif type == 2:
            report_record = HoldDiagnoseReport(**args)
        elif type == 3:
            report_record = PeriodicReport(**args)
        if not report_record:
            return False
        tamp_diagnose_session.add(report_record)
pengxiong's avatar
pengxiong committed
207
        tamp_diagnose_session.flush()
pengxiong's avatar
pengxiong committed
208
        record_id = report_record.id
pengxiong's avatar
pengxiong committed
209

210
    save_pdf.delay(record_id, ifa_id, customer_id, pdf_name, type, report_data)
pengxiong's avatar
pengxiong committed
211
    return {'record_id': record_id}
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    # pid = os.fork()
    # if pid == 0:
    #     try:
    #         dt = DataIntegrate(ifa_id=ifa_id, customer_id=customer_id, pdf_name=pdf_name, type=type)
    #         dt.render_data(data=report_data)
    #     except:
    #         pass
    #     with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
    #         tamp_diagnose_session = tamp_diagnose_app.session
    #         hold_report = tamp_diagnose_session.query(HoldReport).filter(and_(
    #             HoldReport.id == record_id,
    #             HoldReport.ifa_id == ifa_id,
    #         ))
    #         hold_diagnose_report = tamp_diagnose_session.query(HoldDiagnoseReport).filter(and_(
    #             HoldDiagnoseReport.id == record_id,
    #             HoldDiagnoseReport.ifa_id == ifa_id,
    #         ))
    #         periodic_report = tamp_diagnose_session.query(PeriodicReport).filter(and_(
    #             PeriodicReport.id == record_id,
    #             PeriodicReport.ifa_id == ifa_id,
    #         ))
    #         if type == 1:
    #             res = hold_report
    #         elif type == 2:
    #             res = hold_diagnose_report
    #         elif type == 3:
    #             res = periodic_report
    #         if not res:
    #             return False
    #         res.update({
    #             'file': pdf_name,
    #             'update_status': 2,
    #             'update_time': datetime.datetime.now()
    #         })
    # else:
    #     return {'record_id': record_id}