report_service.py 10.8 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
    conditions = ()
    if type == 0:
wang zhengwei's avatar
wang zhengwei committed
37 38 39 40 41 42 43 44 45 46 47 48
        if start_time and end_time:
            conditions = [
                    ReportView.ifa_id == ifa_id,
                    or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%')),
                    ReportView.create_time >= start_time,
                    ReportView.create_time <= end_time
            ]
        else:
            conditions = [
                    ReportView.ifa_id == ifa_id,
                    or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%'))
                ]
pengxiong's avatar
pengxiong committed
49
    else:
wang zhengwei's avatar
wang zhengwei committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63
        if start_time and end_time:
            conditions = [
                    ReportView.ifa_id == ifa_id,
                    ReportView.type == type,
                    or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%')),
                    ReportView.create_time >= start_time,
                    ReportView.create_time <= end_time
            ]
        else:
            conditions = [
                    ReportView.ifa_id == ifa_id,
                    ReportView.type == type,
                    or_(ReportView.name.like('%' + name + '%'), ReportView.customer_name.like('%' + name + '%'))
            ]
64
    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
65 66
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
pengxiong's avatar
pengxiong committed
67
        report_res = tamp_diagnose_session.query(ReportView).filter(and_(*conditions))
pengxiong's avatar
pengxiong committed
68
        totalSize = report_res.count()
69
        report_res = report_res.order_by(ReportView.create_time.desc()).offset(offset).limit(pageSize)
pengxiong's avatar
pengxiong committed
70
        res = [r.to_dict(allow_field=allow_field) for r in report_res]
pengxiong's avatar
pengxiong committed
71

pengxiong's avatar
pengxiong committed
72
    return {
pengxiong's avatar
pengxiong committed
73
        'content': res,
pengxiong's avatar
pengxiong committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
        '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
102 103 104 105 106 107 108


def get_one_report(args):
    """."""
    id = args.get('id')
    type = args.get('type')
    ifa_id = args.get('ifa_id')
pengxiong's avatar
pengxiong committed
109
    data = []
pengxiong's avatar
pengxiong committed
110 111
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
pengxiong's avatar
pengxiong committed
112 113 114
        res = tamp_diagnose_session.query(ReportView).filter(and_(
            ReportView.id == id,
            ReportView.type == type,
pengxiong's avatar
pengxiong committed
115
            ReportView.ifa_id == ifa_id,
pengxiong's avatar
pengxiong committed
116
        ))
pengxiong's avatar
pengxiong committed
117
        data = [r.to_dict() for r in res]
pengxiong's avatar
pengxiong committed
118 119 120
    if data:
        return data[0]
    return False
pengxiong's avatar
pengxiong committed
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
def edit_report_name(args):
    """编辑报告"""
    id = args.get('id')
    type = args.get('type')
    ifa_id = args.get('ifa_id')
    name = args.get('name')
    res = []
    with TAMP_SQL(tamp_diagnose_app_engine) as tamp_diagnose_app:
        tamp_diagnose_session = tamp_diagnose_app.session
        if type == 1:
            res = tamp_diagnose_session.query(HoldReport).filter(and_(
                HoldReport.id == id,
                HoldReport.ifa_id == ifa_id,
            ))
        elif type == 2:
            res = tamp_diagnose_session.query(HoldDiagnoseReport).filter(and_(
                HoldDiagnoseReport.id == id,
                HoldDiagnoseReport.ifa_id == ifa_id,
            ))
        elif type == 3:
            res = tamp_diagnose_session.query(PeriodicReport).filter(and_(
                PeriodicReport.id == id,
                PeriodicReport.ifa_id == ifa_id,
            ))
        else:
            return False
        r = res.update({
            'name': name,
            'update_time': datetime.datetime.now()
        })
    return True
pengxiong's avatar
pengxiong committed
153 154 155 156 157 158 159

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
160
    pdf_name = str(uuid.uuid4()) + '.pdf'
pengxiong's avatar
pengxiong committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
    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,
186
            'update_status': 1,
pengxiong's avatar
pengxiong committed
187 188
            'update_time': datetime.datetime.now()
        })
189
        
190
    save_pdf.delay(id, ifa_id, res[0].customer_id, pdf_name, type, report_data)
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
        # 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
223
    return True
pengxiong's avatar
pengxiong committed
224 225 226 227 228 229 230 231


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

pengxiong's avatar
pengxiong committed
237
    args.pop('type')
pengxiong's avatar
pengxiong committed
238 239 240 241 242 243 244 245 246 247 248 249 250
    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
251
        tamp_diagnose_session.flush()
pengxiong's avatar
pengxiong committed
252
        record_id = report_record.id
pengxiong's avatar
pengxiong committed
253

254
    save_pdf.delay(record_id, ifa_id, customer_id, pdf_name, type, report_data)
pengxiong's avatar
pengxiong committed
255
    return {'record_id': record_id}
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
    # 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}