fix: inline styles to classes
This commit is contained in:
@@ -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
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user