mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
ae0efe73d1
- Auto-allocation button ignores outputs which are complete - StockItem API allows filtering by BomItem - Quantity inputs are now auto-filled - Display progress bar in the modal form
15 lines
258 B
Python
15 lines
258 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CompanyConfig(AppConfig):
|
|
name = 'company'
|
|
|
|
def ready(self):
|
|
"""
|
|
This function is called whenever the Company app is loaded.
|
|
"""
|
|
|
|
pass
|