report_service.py 9.99 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
pengxiong's avatar
pengxiong committed
20 21 22 23 24 25


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

pengxiong's avatar
pengxiong committed
58
    return {
pengxiong's avatar
pengxiong committed
59
        'content': res,
pengxiong's avatar
pengxiong committed
60 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
        '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
88 89 90 91 92 93 94 95 96 97


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


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
115
    pdf_name = str(uuid.uuid4()) + '.pdf'
pengxiong's avatar
pengxiong committed
116 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 142
    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,
            'update_time': datetime.datetime.now()
        })
pengxiong's avatar
pengxiong committed
143 144 145 146 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
        pid = os.fork()
        if pid == 0:
            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({
                    'update_status': 1,
                    'update_time': datetime.datetime.now()
                })
            try:
                dt = DataIntegrate(ifa_id=ifa_id, customer_id=res[0].customer_id, pdf_name=pdf_name, type=type)
173
                dt.render_data(data=json.loads(report_data.replace(template_folder, temp_img_save_folder)))
pengxiong's avatar
pengxiong committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
            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()
                })
    return True
pengxiong's avatar
pengxiong committed
204 205 206 207 208 209 210 211


def make_report(args):
    """制作报告."""
    ifa_id = args.get('ifa_id')
    customer_id = args.get('customer_id')
    type = args.get('type')
    name = args.get('name')
212
    report_data = json.loads(args.get('report_data').replace(template_folder, temp_img_save_folder))
pengxiong's avatar
pengxiong committed
213 214 215 216
    pdf_name = str(uuid.uuid4()) + '.pdf'
    args['update_time'] = datetime.datetime.now()
    args['update_status'] = 1

pengxiong's avatar
pengxiong committed
217
    args.pop('type')
pengxiong's avatar
pengxiong committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
    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)
        tamp_diagnose_session.flush()
        record_id = report_record.id
pengxiong's avatar
pengxiong committed
233 234 235 236 237 238 239
    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
pengxiong's avatar
pengxiong committed
240 241
        with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
            tamp_diagnose_session = tamp_diagnose_app.session
pengxiong's avatar
pengxiong committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
            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:
pengxiong's avatar
pengxiong committed
268
        return {'record_id': record_id}