diff --git a/scripts/seed_demo.py b/scripts/seed_demo.py index 6d0f5d8a..b074e434 100644 --- a/scripts/seed_demo.py +++ b/scripts/seed_demo.py @@ -390,14 +390,13 @@ def create_demo_vendors( company = companies[company_index] - # Create vendor linked to company + # Create vendor linked to company (owner is inherited from company) vendor = Vendor( company_id=company.id, # Link to company vendor_code=vendor_data["vendor_code"], name=vendor_data["name"], subdomain=vendor_data["subdomain"], description=vendor_data["description"], - owner_user_id=company.owner_user_id, # Use company owner (for backward compatibility) is_active=True, is_verified=True, created_at=datetime.now(UTC), diff --git a/static/shared/js/icons.js b/static/shared/js/icons.js index a13455c3..f07067e9 100644 --- a/static/shared/js/icons.js +++ b/static/shared/js/icons.js @@ -17,6 +17,9 @@ const Icons = { 'chevron-down': ``, 'chevron-right': ``, + // Business & Organization + 'office-building': ``, + // User & Profile 'user': ``, 'users': ``, @@ -28,10 +31,12 @@ const Icons = { // Actions 'edit': ``, + 'switch-horizontal': ``, 'delete': ``, 'plus': ``, 'check': ``, 'close': ``, + 'x': ``, 'refresh': ``, 'duplicate': ``, 'eye': ``, @@ -113,6 +118,7 @@ const Icons = { 'lightning-bolt': ``, 'clock': ``, 'lock-closed': ``, + 'lock-open': ``, 'database': ``, 'light-bulb': ``, 'book-open': ``,