mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 22:52:07 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
30
odoo-bringout-oca-ocb-base/odoo/tools/win32.py
Normal file
30
odoo-bringout-oca-ocb-base/odoo/tools/win32.py
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import locale
|
||||
import time
|
||||
import datetime
|
||||
|
||||
if not hasattr(locale, 'D_FMT'):
|
||||
locale.D_FMT = 1
|
||||
|
||||
if not hasattr(locale, 'T_FMT'):
|
||||
locale.T_FMT = 2
|
||||
|
||||
if not hasattr(locale, 'nl_langinfo'):
|
||||
def nl_langinfo(param):
|
||||
if param == locale.D_FMT:
|
||||
val = time.strptime('30/12/2004', '%d/%m/%Y')
|
||||
dt = datetime.datetime(*val[:-2])
|
||||
format_date = dt.strftime('%x')
|
||||
for x, y in [('30', '%d'),('12', '%m'),('2004','%Y'),('04', '%Y')]:
|
||||
format_date = format_date.replace(x, y)
|
||||
return format_date
|
||||
if param == locale.T_FMT:
|
||||
val = time.strptime('13:24:56', '%H:%M:%S')
|
||||
dt = datetime.datetime(*val[:-2])
|
||||
format_time = dt.strftime('%X')
|
||||
for x, y in [('13', '%H'),('24', '%M'),('56','%S')]:
|
||||
format_time = format_time.replace(x, y)
|
||||
return format_time
|
||||
locale.nl_langinfo = nl_langinfo
|
||||
Loading…
Add table
Add a link
Reference in a new issue