mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 02:52:03 +02:00
10 lines
276 B
Python
10 lines
276 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from pytz import UTC
|
|
|
|
|
|
def gmc_format_price(price, currency):
|
|
return f'{currency.round(price)} {currency.name}'
|
|
|
|
def gmc_format_date(dt):
|
|
return UTC.localize(dt).isoformat(timespec='minutes')
|