2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 12:05:53 +00:00

add docstring

This commit is contained in:
Matthias
2022-03-30 01:32:29 +02:00
parent 924e46a0e3
commit 48441ea48e

View File

@ -93,6 +93,9 @@ def get_next_so_number():
def get_deleted_company():
"""
Returns the deleted company object
"""
return Company.objects.get_or_create(name='deleted', email='deleted',is_deleted=True)[0]
class Order(ReferenceIndexingMixin):