You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

# -*- coding: utf-8 -*-
# @Time : 2023/9/27 13:13
# @Author : tx
# @File : report_use.py
# @Description :
from helper.export.base import ReportExport
from helper.report import report_use_drug
class ReportUse(ReportExport):
def __init__(self, request, keyword):
super().__init__()
self.title = "使用明细记录"
self.stateDict = {0: "待入库", 1: "在库", 2: "出库", 3: "空瓶", 4: "报废"}
self.request = request
self.keyword = keyword
async def parse_data(self, request, keyword):
keyword.page_no = 0
result = await report_use_drug(request, keyword)
self.drug_attribute_key_list = result.get("attribute_key")
return result.get("data")
def parse_key_finds_list(self):
"""
解析键列名
:return:
"""
key_list = ["rfid", "cas_code", "batch_no", "manufacturer", "net_weight", "use_weight", "receive_users", "receive_position", "receive_at"]
finds_list = ["RFID", "CAS码", "批号", "生产厂家", "净重", "用量", "操作人员", "位置", "操作时间"]
self.key_list = self.drug_attribute_key_list + key_list
self.finds_list = self.drug_attribute_key_list + finds_list
async def main(self):
"""
主函数
:param kwargs:
:return:
"""
self.data_list = await self.parse_data(self.request, self.keyword)
self.parse_key_finds_list()