2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-12-17 17:58:22 +00:00

feat: add tax_id field to Company model and related forms (#9673)

* feat: add tax_id field to Company model and related forms

* Update 0075_company_tax_id.py to fix typo

* Update models.py to fix typo

* Update tests.py to increment 'column_mappings.count()' to 15

* Update api_version.py
This commit is contained in:
sufyan-mukadam
2025-07-15 00:00:46 +01:00
committed by GitHub
parent d62ac38cb1
commit dcaf7cf7d7
9 changed files with 50 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ class CompanyBriefSerializer(InvenTreeModelSerializer):
'image',
'thumbnail',
'currency',
'tax_id',
]
read_only_fields = ['currency']
@@ -145,6 +146,7 @@ class CompanySerializer(
'remote_image',
'address_count',
'primary_address',
'tax_id',
]
@staticmethod