Quantity
- |
- Price Unit
- |
Price Total
|
@@ -215,10 +212,6 @@
|
- |
= self.from_date and d.date <= self.to_date
- ).mapped("date")
- for date in dates:
- date_list.append(
- (
- 0,
- False,
- {
- "date": date,
- },
- )
- )
- self.date_ids = date_list
-
- @api.depends("move_line_ids")
- def _compute_move_ids(self):
- self.ensure_one()
- self.move_ids = [(6, 0, self.move_line_ids.mapped("move_id.id"))]
-
-
-class InvoiceFilterDaysItems(models.TransientModel):
-
- _name = "pms.invoice.filter.days.items"
- _description = "Item Days"
- _rec_name = "date"
-
- date = fields.Date("Date")
- included = fields.Boolean("Included", default=True)
- filter_wizard_id = fields.Many2one(comodel_name="pms.invoice.filter.days")
diff --git a/pms/wizards/wizard_invoice_filter_days.xml b/pms/wizards/wizard_invoice_filter_days.xml
deleted file mode 100644
index dc761d214..000000000
--- a/pms/wizards/wizard_invoice_filter_days.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
- pms.invoice.filter.days.form
- pms.invoice.filter.days
-
-
-
-
-
-
- Filter Days
- pms.invoice.filter.days
- form
- new
-
-
-
|