14 lines
259 B
Python
14 lines
259 B
Python
# -*- coding: utf-8 -*-
|
|
import base64
|
|
|
|
from odoo import api, fields, models, SUPERUSER_ID, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class SfMaintenanceEquipmentCategory(models.Model):
|
|
_inherit = 'maintenance.request'
|
|
_description = '维保计划'
|
|
|
|
|
|
|