13 lines
361 B
Python
13 lines
361 B
Python
# Copyright 2017-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import _, api, fields, models
|
|
|
|
|
|
class TierValidation(models.AbstractModel):
|
|
_inherit = "tier.validation"
|
|
|
|
def _notify_restarted_review_body(self):
|
|
return _("%s 取消审批请求.") % (self.env.user.name)
|
|
|