mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 20:06:43 +08:00
14 lines
312 B
Python
14 lines
312 B
Python
from extensions.permissions import InterfacePermission
|
|
|
|
|
|
class PurchaseOrderPermission(InterfacePermission):
|
|
code = 'purchase_order'
|
|
|
|
|
|
class PurchaseReturnOrderPermission(InterfacePermission):
|
|
code = 'purchase_return_order'
|
|
|
|
|
|
__all__ = [
|
|
'PurchaseOrderPermission', 'PurchaseReturnOrderPermission',
|
|
]
|