Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Artificial Intelligence
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to convert Islamic date to Hijri date using python code?(My code shows error)

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
1 Répondre
13567 Vues
Avatar
Remya

I have two textbox.

In first textbox i'll manually enter islamic date, at the same time on the second textbox it changes to geogorian date.

I wrote code for it, but its shows error.

from openerp.osv import fields, osv

import math

def intPart(floatNum):

    if floatNum < -0.0000001: return math.ceil(floatNum - 0.0000001)

    return math.floor(floatNum + 0.0000001)

def Hijri2Gregorian(yr,mth,day):

    jd1 = intPart((11 * yr + 3) / 30.0)

    jd2 = intPart((mth - 1) / 2.0)

    jd = jd1 + 354 * yr + 30 * mth - jd2 + day + 1948440 - 385

    if jd > 2299160:

    l = jd + 68569

    n = intPart((4 * l) / 146097.0)

    l = l - intPart((146097 * n + 3) / 4.0)

    i = intPart((4000 * (l + 1)) / 1461001.0)

    l = l - intPart((1461 * i) / 4.0) + 31

    j = intPart((80 * l) / 2447.0)

    d = l - intPart((2447 * j) / 80.0)

    l = intPart(j / 11.0)

    m = j + 2 - 12 * l

    y = 100 * (n - 49) + i + l

    else:

    j = jd + 1402

    k = intPart((j - 1) / 1461.0)

    l = j - 1461 * k

    n = intPart((l - 1) / 365.0) - intPart(l / 1461.0)

    i = l - 365 * n + 30

    j = intPart((80 * i) / 2447.0)

    d = i - intPart((2447 * j) / 80.0)

    i = intPart(j / 11.0)

    m = j + 2 - 12 * i

    y = 4 * k + n + i - 4716

    return y, m, d

 

class hr_extra(osv.osv):

_inherit = "hr.employee"

def _get_hijr_date(self, cr, uid, ids, name, arg,context=None):

res = {}

for self_data in self.browse(cr, uid, ids, context=context):

    islamic_date = self_data.islamic_date

    # get Pass yesr, month and day in this function

    Hijri2Gregorian(yr,mth,day)

   return res

_columns = {

    'islamic_date' : fields.char('Islamic Date'),

    'english_date' : fields.function(Hijri2Gregorian,'English Date'), }

hr_extra()

 

Error: TypeError: Hijri2Gregorian() takes exactly 3 arguments (7 given)

 

Updated Code

 

class hr_extra(osv.osv):

_inherit = "hr.employee"

def _get_hijri_date(self, cr, uid, ids, name, args, context=None):

    res = {}

    for self_data in self.browse(cr, uid, ids, context=context):

        islamic_date = self_data.islamic_date

        islamic_date = '%.2f' % islamic_date

        list = str(islamic_date).split('.')

        yr = islamic_date(int(list[0]))

        mth = islamic_date(int(list[1]))

        day = islamic_date(int(list[2]))

        # get Pass yesr, month and day in this function

        #yr = 1428

        #mth = 1

        #day = 2

Hijri2Gregorian(yr,mth,day)

return res _

columns = {

    'islamic_date' : fields.char('Islamic Date'),

    'english_date' : fields.function(_get_hijri_date,type='date', select=True,string='English Date'), }

hr_extra()

 

Is this code correct?? Please help me...

1
Avatar
Ignorer
Senthilnathan

update the log or error message for ur updated code ?

Remya
Auteur

Module installed: When i click on the existing employee. It shows error: File "/opt/openerp/server/openerp/addons/date22/hr_date.py", line 52, in _get_hijri_date list = islamic_date.split('.') AttributeError: 'bool' object has no attribute 'split'

Remya
Auteur

When i created new employee and give islamic date as 1428.1.2, then save. i got error: File "/opt/openerp/server/openerp/addons/date22/hr_date.py", line 53, in _get_hijri_date yr = islamic_date(str(list[0])) TypeError: 'unicode' object is not callable

Remya
Auteur

Any idea, senthilnathan?

Senthilnathan

if it says bool then there is no data so it can't split

Senthilnathan

unicode error means u need to convert it before passing print type of the value passed and check

Remya
Auteur

Did you know the code?

Remya
Auteur

Did you know solve the issue?

Remya
Auteur

How i convert these values?

hesham@elmahdy.info

Did you mean to Hijri to Gregorian?

Avatar
Med Said BARA
Meilleure réponse

Could you try this:

class hr_extra(osv.osv):

_inherit = "hr.employee"

 def _get_hijri_date(self, cr, uid, ids, name, args, context=None):

      res = {}

      for self_data in self.browse(cr, uid, ids, context=context):

          islamic_date = self_data.islamic_date

          list = str(islamic_date).split('.')

         yr = int(list[0])

         mth = int(list[1])

         day =int(list[2])

         # get Pass yesr, month and day in this function

         #yr = 1428

         #mth = 1

         #day = 2

        Hijri2Gregorian(yr,mth,day)

return res

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now