fix: inline styles to classes

This commit is contained in:
2024-09-12 00:52:00 +04:00
parent 15bb43e89d
commit 03aba9649a
2 changed files with 19 additions and 28 deletions

View File

@@ -149,16 +149,16 @@ class BillingService(BaseService):
services.append(
CreateBillingRequestValue(
name=f'[{product.product.name}] - {service.service.name}',
price=to_locale_number(service.price),
amount=to_locale_number(product.quantity)
price=service.price,
amount=product.quantity
)
)
for service in deal.services:
services.append(
CreateBillingRequestValue(
name=f'{service.service.name}',
price=to_locale_number(service.price),
amount=to_locale_number(service.quantity)
price=service.price,
amount=service.quantity
)
)