A comprehensive Customer Relationship Management software built on Django with extensive customization capabilities
Product catalog management, service definitions, pricing, categories, and inventory integration.
class Product(CremeEntity):
"""
Product entity for catalog management.
Attributes:
- name: str, product name
- code: str, product code/SKU
- description: TextField, product description
- unit_price: DecimalField, base price
- category: ForeignKey, product category
"""class Service(CremeEntity):
"""
Service entity for service catalog.
Attributes:
- name: str, service name
- description: TextField, service description
- unit_price: DecimalField, service price
"""Install with Tessl CLI
npx tessl i tessl/pypi-creme-crmdocs