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

Not Having New State in...Odoo7?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
customizationopenerp7odoo
1 Balas
4472 Tampilan
Avatar
Mazhar Iqbal Rana

... In openerp7

I want my new state to show up in sale module ... But it is not appearing
Pls have a look at code below

In sale.py module I added state like:

    class Sale_order(osv.Model):

    _inherit = 'sale.order'

    _columns = {
        'state': fields.selection([
            ('draft', 'Draft Quotation'),
            ('my_new_state', 'My New State'),
            ('sent', 'Quotation Sent'),
            ('cancel', 'Cancelled'),
            ('waiting_date', 'Waiting Schedule'),
            ('progress', 'Sales Order'),
            ('manual', 'Sale to Invoice'),
            ('invoice_except', 'Invoice Exception'),
            ('done', 'Done'),
            ], 'Status', readonly=True, track_visibility='onchange',
            help="Gives the status of the quotation or sales order. \nThe exception status is automatically set when a cancel operation occurs in the processing of a document linked to the sales order. \nThe 'Waiting Schedule' status is set when the invoice is confirmed but waiting for the scheduler to run on the order date.", select=True),
    }

And in sale_view.xml, I added this piece of code..


    <openerp>
    <data>
        <!-- Inherit the sale order model's form view and customize -->
        <record id="sale_form_view" model="ir.ui.view">
            <field name="name">sale.order.form.inherit</field>
            <field name="model">sale.order</field>
            <field name="inherit_id" ref="sale.view_order_form"/>
            <field name="arch" type="xml">
                <!-- Statusbar widget should also contain the new status -->
                <field name="state" position="replace">
                    <field name="state" widget="statusbar" statusbar_visible="draft,my_new_state,sent,invoiced,done" statusbar_colors='{"invoice_except":"red","waiting_date":"blue"}'/>
                </field>
            </field>
        </record>
    </data>
</openerp>


But.... My new state is not appearing between draft quotation and quotation sent

Please guide

Why is this so

Thanks

0
Avatar
Buang
Anand

http://www.pixelite.co.nz/article/adding-additional-fields-using-custom-module-openerp-7

Anand

import netsvc from openerp.osv import osv, fields class purchase_order(osv.osv): _inherit = 'purchase.order' STATE_SELECTION = [ ('draft', 'Draft PO'), ('sent', 'RFQ Sent'), ('design_approved','Design Approval'), ('confirmed', 'Waiting Approval'), ('approved', 'Purchase Order'), ('except_picking', 'Shipping Exception'), ('except_invoice', 'Invoice Exception'), ('done', 'Done'), ('cancel', 'Cancelled') ] _columns = { 'state': fields.selection(STATE_SELECTION, 'Status', readonly=True, help="The status of the purchase order or the quotation request. A quotation is a purchase order in a 'Draft' status. Then the order has to be confirmed by the user, the status switch to 'Confirmed'. Then the supplier must confirm the order to change the status to 'Approved'. When the purchase order is paid and received, the status becomes 'Done'. If a cancel action occurs in the invoice or in the reception of goods, the status becomes in exception.", select=True), } this is how i added a custom state and i used this xml to view it design_approved function write({'state':'design_approved'}) design_confirm purchase_confirm purchase.workflow.inherit purchase.order <xpath expr="/form/header//button[@name='print_quotation']" position="after"> <xpath expr="/form/header//button[@name='purchase_confirm']" position="replace">

Mazhar Iqbal Rana
Penulis

Can you help me on teamviwer please? Am still getting prob :(

Anand

Give me your skypeid and mail id.. First i will send you module for state change install that.. if necessary ping me.. skype id: anand.kannathasan mail id: anand.k@mitosistech.com

Mazhar Iqbal Rana
Penulis

Thanks so much Anand My skype id is engr1111 and email is imazhar74@hotmail.com Also please tell me there that how much problems can be solved using odoo interface or always we have to enter code? Thanks so much I add you at skype

Mazhar Iqbal Rana
Penulis

I have added you and also have pingde you on skype

Mazhar Iqbal Rana
Penulis

Also I have emailed you as test email

Anand

I have sent a module in mail check it..

Avatar
Anand
Jawaban Terbai

At first you should craete a state in workflow...?

then appropriate transition..? after that only it will appear..

1
Avatar
Buang
Mazhar Iqbal Rana
Penulis

I se.e. but each time i want to give new state i just have to add activity plus transition thats it? I mean all doable from interface or both from code and interface I have to do? And in that upper case I mentioned in question, coding wont help or both coding and interface change of workflow will work ? Thanks

Anand

Actually you should do like above mentioned or else u can also use a button in xml and trigger it like self.write('state':'state you want')..

Anand

https://www.odoo.com/forum/help-1/question/how-do-i-add-new-state-and-change-the-workflow-of-purchase-order-5118

Anand

http://members.hellug.gr/xrg/openerp-doc/html/api_reference/workflow/wkf_service.html

Anand

refer both buddy.. if it seems good give me a upvote..?

Mazhar Iqbal Rana
Penulis

@Anand Thanks but problem is he is adding new module please guide me how to add new module I mean by which name..LIke we add custom modules and then restart server and update the list... how in this case will i do? what will be my module name etc or only changes will be in existing files? Thanks

Mazhar Iqbal Rana
Penulis

Dont worry for upvote dear.. :) plz solve my issue I am worried :(

Mazhar Iqbal Rana
Penulis

Actually what I want is that .. I have to put two approvals between draft quotation and rfq sent in purchase order... By default odoo has only one approval..I want to add states and i want to trigger wioth buttons to these states.. Like approved by superintendent then approved by manager and then approved by ceo...then rfq sent must be triggered....each of them must approve certain levels of purchase orders amount like for superintendent 1000$ and similarly varies from person to person

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
Few Confusions Regarding Odoo..
customization odoo
Avatar
0
Mar 15
4267
Purchase Order Module..Cannot Install..Odoo8
customization odoo
Avatar
0
Mar 15
4768
Showing Installed Module on Ubuntu???
customization odoo
Avatar
Avatar
1
Mar 15
4254
No Widget Displayed?
customization odoo
Avatar
0
Mar 15
3943
How to set value to another class member in openErp Diselesaikan
openerp7 odoo
Avatar
Avatar
1
Mar 15
4508
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