Skip to content

Commit

Permalink
temp rebasing PR 234 (8eaedde)
Browse files Browse the repository at this point in the history
  • Loading branch information
roboadhoc authored Feb 6, 2025
2 parents 65611f6 + 8eaedde commit 9f5f2f0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion purchase_stock_ux/models/purchase_order_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ class PurchaseOrderLine(models.Model):
('to receive', 'To Receive'),
('received', 'Received'),
],
string='Delivery Status',
compute='_compute_delivery_status',
store=True,
readonly=True,
Expand Down
2 changes: 1 addition & 1 deletion purchase_ux/models/purchase_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class PurchaseOrder(models.Model):
_inherit = 'purchase.order'

internal_notes = fields.Html('Internal Notes')
internal_notes = fields.Html()

force_invoiced_status = fields.Selection([
('no', 'Nothing to Bill'),
Expand Down
1 change: 0 additions & 1 deletion purchase_ux/models/purchase_order_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class PurchaseOrderLine(models.Model):
('to invoice', 'Waiting Invoices'),
('invoiced', 'No Bill to Receive'),
],
string='Invoice Status',
compute='_compute_invoice_status',
store=True,
readonly=True,
Expand Down

0 comments on commit 9f5f2f0

Please sign in to comment.