How do I change 'customer invoice' to 'tax invoice' in odoo 17?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- Müşteri İlişkileri Yönetimi
- e-Commerce
- Muhasebe
- Envanter
- PoS
- Project
- MRP
Bu soru işaretlendi
Hi,
Inherit the model 'account.move' and replace the field move_type with changing the 'Customer Invoice' to 'Tax Invoice'.
Go through the code:
_inherit = 'account.move'
move_type = fields.Selection(
selection=[
('entry', 'Journal Entry'),
('out_invoice', 'Tax Invoice'),
('out_refund', 'Customer Credit Note'),
('in_invoice', 'Vendor Bill'),
('in_refund', 'Vendor Credit Note'),
('out_receipt', 'Sales Receipt'),
('in_receipt', 'Purchase Receipt'),
],
string='Type',
required=True,
readonly=True,
tracking=True,
change_default=True,
index=True,
default="entry")
Hope it helps
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Üye Olİlgili Gönderiler | Cevaplar | Görünümler | Aktivite | |
---|---|---|---|---|
change between 2 Invoice formats
Çözüldü
|
|
1
Tem 25
|
656 | |
|
2
Tem 25
|
776 | ||
|
1
Tem 25
|
1841 | ||
|
3
Nis 25
|
1877 | ||
|
3
Nis 25
|
2888 |