[REF] hr_luncheon_voucher: remove useless code

This commit is contained in:
Stéphan Sainléger
2023-02-01 22:37:15 +01:00
parent 8579e22474
commit cc901c2e62
9 changed files with 26 additions and 49 deletions

View File

@@ -1,3 +1 @@
# -*- coding: utf-8 -*-
from . import generate_lv_allocations_wizard

View File

@@ -1,16 +1,17 @@
from odoo import _, api, fields, models
from odoo import fields, models
class GenerateLVAllocationRequests(models.TransientModel):
_name = "generate.lv.allocation.requests"
_description = "Generate Luncheon Vouchers Allocations Requests"
distrib_campaign_name = fields.Char('Distribution campaign', required=True)
date_from = fields.Datetime(
string=_("Start Date"),
string="Start Date",
required=True
)
date_to = fields.Datetime(
string=_("End Date"),
string="End Date",
required=True
)