38086-vm/core/migrations/0037_alter_systemsetting_options.py
2026-02-11 16:45:13 +00:00

18 lines
853 B
Python

# Generated by Django 5.2.7 on 2026-02-11 16:26
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('core', '0036_alter_systemsetting_options'),
]
operations = [
migrations.AlterModelOptions(
name='systemsetting',
options={'permissions': [('view_dashboard', 'Can view dashboard'), ('view_pos', 'Can access POS'), ('view_reports', 'Can view reports'), ('view_accounting', 'Can view accounting'), ('view_hr', 'Can view HR'), ('view_inventory', 'Can view inventory'), ('view_sales', 'Can view sales'), ('view_purchases', 'Can view purchases'), ('view_customers', 'Can view customers'), ('view_suppliers', 'Can view suppliers'), ('view_expenses', 'Can view expenses'), ('view_lpo', 'Can view LPO'), ('view_quotations', 'Can view quotations')]},
),
]