mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
* [WIP] Basic tests definition * [DEL] Default diff invoicing * [WIP] Reservation refact invoice fields * [FIX] test price without taxes * [FIX] Security csv merge * [WIP]pms: Wizard adv inv views * [ADD] Wizard Filter Invoice Days * [WIP] Payment WorkFlow
11 lines
236 B
Python
11 lines
236 B
Python
from freezegun import freeze_time
|
|
|
|
from odoo.tests.common import SavepointCase
|
|
|
|
freeze_time("2000-02-02")
|
|
|
|
|
|
class TestPmsInvoiceSimpleInvoice(SavepointCase):
|
|
def setUp(self):
|
|
super(TestPmsInvoiceSimpleInvoice, self).setUp()
|