Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

make widget="float_time" in HH:mm:ss format in V9

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
communityinheritancejsv9
1 Balas
9573 Tampilan
Avatar
zilvinas

I want to show float_time widget in hh:mm:ss format. Today i have found V8 module which makes such changes, but what module dont work in V9. as i see where are some differences between v8 and v9 in the original formats.js file. 

odoo v8

(function() {
.....
instance.web.format_value = function (value, descriptor, value_if_empty) {
....

odoo v9

odoo.define('web.formats', function (require) {
"use strict";
......
function format_value (value, descriptor, value_if_empty) {


so i think because of these differences old module inheritance dont work properly, maybe someone knows how to correctly inherit js files in odoo V9 ?

in old module it was made like this

openerp.module_name = function(instance){

original_format_value = instance.web.format_value;
instance.web.format_value = function (value, descriptor, value_if_empty) {
switch (descriptor.widget || descriptor.type || (descriptor.field && descriptor.field.type)) {
........


thanks in advace!

0
Avatar
Buang
Avatar
Axel Mendoza
Jawaban Terbai

Hi @silvinas

You could do it like using the compatibility layer like this:

openerp.module_name = function(instance){

original_format_value = instance.web.formats.format_value;
instance.web.formats.format_value = function (value, descriptor, value_if_empty) {
switch (descriptor.widget || descriptor.type || (descriptor.field && descriptor.field.type)) {

or using the new v9 js api:

odoo.define('openerp.module_name', function (require) {
"use strict";

var formats = require('web.formats'); 

original_format_value = formats.format_value;

formats.format_value = function (value, descriptor, value_if_empty) {
switch (descriptor.widget || descriptor.type || (descriptor.field && descriptor.field.type)) {
2
Avatar
Buang
zilvinas
Penulis

thank you @Axel Mendoza, now i have some error, but this is ok, because its means my scrip is in the game now :) in developer tools i can see that error: Some modules could not be started Failed modules: ["openerp.my_module"] and highlights line: var missing=odoo.__DEBUG__.get_missing_jobs();var failed=odoo.__DEBUG__.get_failed_jobs();var unloaded=_.filter(debug_jobs,function(job){return job.missing;});var log=[(_.isEmpty(failed)?(_.isEmpty(unloaded)?'info':'warning'):'error')+':','Some modules could not be started'];if(missing.length)log.push('\nMissing dependencies: ',missing);if(!_.isEmpty(failed))log.push('\nFailed modules: ',_.pluck(failed,'name'));if(!_.isEmpty(rejected))log.push('\nRejected modules: ',rejected);if(!_.isEmpty(rejected_linked))log.push('\nRejected linked modules:',rejected_linked);if(!_.isEmpty(unloaded))log.push('\nNon loaded modules: ',_.pluck(unloaded,'name'));if(odoo.debug&&!_.isEmpty(debug_jobs))log.push('\nDebug: ',debug_jobs);if(odoo.debug||!_.isEmpty(failed)||!_.isEmpty(unloaded)){console[_.isEmpty(unloaded)?'info':'error'].apply(console,log);}}},process_jobs:function(jobs,services){var job;var require;var time;function process_job(job){var require=make_require(job);try{var def=$.Deferred();$.when(job.factory.call(null,require)).then(function(data){services[job.name]=data;clearTimeout(time);time=_.defer(odoo.process_jobs,jobs,services);def.resolve();},function(e){job.rejected=e||true;jobs.push(job);def.resolve();});jobs.splice(jobs.indexOf(job),1);job_deferred.push(def);}catch(e){job.error=e;}} i am new to JS so i am little bit confused..

Axel Mendoza

Sorry I will be offline some days. If it was helpful then... cojld you vote it?

zilvinas
Penulis

I find out my problem, it was what one variable was not defined (lack of experience in JS..)

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
inherit js file odoo 9
inheritance js
Avatar
Avatar
2
Jul 17
5268
While Inheriting showing error
inheritance v9
Avatar
0
Mei 16
3504
Trouble Importing JavaScript Between Custom Odoo Modules
javascript inheritance js
Avatar
0
Mei 24
3326
Js Inheritance
inheritance js Odoo10
Avatar
Avatar
1
Agu 23
11930
inheritance of PosModel in POS models.js file Diselesaikan
pos inheritance js
Avatar
Avatar
Avatar
Avatar
5
Sep 20
33960
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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