Исправлены 4 проблемы: 1. Расчёт цены первого товара - улучшена валидация в getProductPrice и calculateFinalPrice 2. Отображение actual_price в Select2 вместо обычной цены 3. Количество по умолчанию = 1 для новых форм компонентов 4. Auto-select текста при клике на поле количества для удобства редактирования Изменённые файлы: - products/forms.py: добавлен __init__ в KitItemForm для quantity.initial = 1 - products/templates/includes/select2-product-init.html: обновлена formatSelectResult - products/templates/productkit_create.html: добавлен focus handler для auto-select - products/templates/productkit_edit.html: добавлен focus handler для auto-select 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
840 B
Python
29 lines
840 B
Python
import os
|
|
import sys
|
|
import django
|
|
|
|
# Добавляем путь к проекту
|
|
sys.path.insert(0, 'C:/Users/team_/Desktop/test_qwen/myproject')
|
|
|
|
# Настройка Django
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myproject.settings')
|
|
django.setup()
|
|
|
|
from tenants.models import TenantRegistration
|
|
|
|
# Создаём заявку на регистрацию
|
|
registration = TenantRegistration.objects.create(
|
|
shop_name='Test Shop 3',
|
|
schema_name='shop3',
|
|
owner_email='shop3@example.com',
|
|
owner_name='John Doe',
|
|
phone='+375291234567',
|
|
status=TenantRegistration.STATUS_PENDING
|
|
)
|
|
|
|
print(f"Registration created: {registration.id}")
|
|
print(f" Shop: {registration.shop_name}")
|
|
print(f" Schema: {registration.schema_name}")
|
|
print(f" Email: {registration.owner_email}")
|
|
print(f" Status: {registration.status}")
|