forked from Mapan/odoo17e
11 lines
344 B
Python
11 lines
344 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, fields
|
|
|
|
|
|
class AvataxConnectionTestResult(models.TransientModel):
|
|
_name = "avatax.connection.test.result"
|
|
_description = 'Test connection with avatax'
|
|
|
|
server_response = fields.Html(string='Server Response')
|