增加中控接口调用日志记录
This commit is contained in:
@@ -4,12 +4,14 @@ import json
|
||||
import base64
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
from odoo.addons.sf_base.decorators.api_log import api_log
|
||||
|
||||
|
||||
class Manufacturing_Connect(http.Controller):
|
||||
|
||||
@http.route('/AutoDeviceApi/ToolGroup', type='json', auth='sf_token', methods=['GET', 'POST'], csrf=False,
|
||||
cors="*")
|
||||
@api_log('刀具组', requester='中控系统')
|
||||
def get_functional_tool_groups_Info(self, **kw):
|
||||
"""
|
||||
刀具组接口
|
||||
|
||||
@@ -51,7 +51,15 @@ class SfMaintenanceEquipment(models.Model):
|
||||
headers = {'Authorization': config['center_control_Authorization']}
|
||||
crea_url = config['center_control_url'] + "/AutoDeviceApi/GetToolInfos"
|
||||
params = {"DeviceId": self.name}
|
||||
r = requests.get(crea_url, params=params, headers=headers)
|
||||
# r = requests.get(crea_url, params=params, headers=headers)
|
||||
r = self.env['api.request.log'].log_request(
|
||||
'get',
|
||||
crea_url,
|
||||
name='机床刀库',
|
||||
responser='中控系统',
|
||||
params=params,
|
||||
headers=headers
|
||||
)
|
||||
ret = r.json()
|
||||
logging.info('机床刀库register_equipment_tool():%s' % ret)
|
||||
datas = ret['Datas']
|
||||
|
||||
Reference in New Issue
Block a user