mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 11:58:42 +08:00
10 lines
161 B
Python
10 lines
161 B
Python
from extensions.permissions import ModelPermission
|
|
|
|
|
|
class StockOutPermission(ModelPermission):
|
|
code = 'stock_out'
|
|
|
|
|
|
__all__ = [
|
|
'StockOutPermission',
|
|
]
|