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

13 lines
295 B
Python

8 months ago
# -*- coding: utf-8 -*-
from odoo import api, models, fields
from odoo.exceptions import UserError, MissingError
class PromptWizard(models.TransientModel):
"""期提示框向导"""
_name = 'prompt.wizard'
_description = "提示框"
def process(self):
pass