コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POS店舗
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 承認
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具専門店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • 醸造所
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ

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

  • CRM
  • e-Commerce
  • 会計
  • 在庫
  • PoS
  • プロジェクト
  • MRP
All apps
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

[Odoo 10]Passing Custom FIeld Value from Sale Order Line to Account Invoice Line

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
fieldssale.order.lineaccount.invoice.lineodoo10
3 返信
13362 ビュー
アバター
Vootipong Limpanitivat

Hi,i have been put maximum effort on these i know these have been ask a lot and i have followed almost every post and i haven't achieve what i want

I have been trying to override _prepare_invoice function

so this is my sale.order.line (inherited) .py

class customSaleField(models.Model):
 _inherit = 'sale.order.line'

 TotalWeight = fields.Float(string='Total Weight',store=True)
 PricePerUnit = fields.Float(string='Price Per Unit',store=True)
 @api.onchange('product_uom_qty','product_id')
 def on_change_weight(self):
  if self.product_uom_qty:
   self.TotalWeight = self.product_uom_qty * self.product_id.weight
  
 @api.onchange('price_subtotal','TotalWeight','product_id','price_unit')
 def on_change_PricePerUnit(self):
  if self.price_subtotal:
   try:
    self.PricePerUnit = self.price_subtotal / self.TotalWeight
   except ZeroDivisionError:
    self.PricePerUnit = 0
 def _prepare_invoice(self):
  res = super(customSaleField,self)._prepare_invoice(self)
  if self.product_id:
   if self.TotalWeight:
    res['TotalWeight'] = self.TotalWeight
   if self.PricePerUnit
    res['PricePerUnit'] = self.PricePerUnit
  return res

I have followed this post and change the code structure to odoo10 it doesnt work 

it doesnt pass value up to account.invoice the value in the field are 0

https://www.odoo.com/zh_CN/forum/help-1/question/how-to-transfer-data-from-sale-order-to-invoice-when-clicking-on-create-invoice-85740

this is my account.invoice.line (inherited) .py

class customAccountField(models.Model):
 _inherit = 'account.invoice.line'

 TotalWeight = fields.Float(string='Total Weight',store=True)
 PricePerUnit = fields.Float(string='Price Per Unit',store=True)
 @api.onchange('quantity','product_id','invoice_line_ids')
 def on_change_weight(self):
  if self.quantity:
   self.TotalWeight = self.quantity * self.product_id.weight
 @api.onchange('price_subtotal','TotalWeight','product_id','price_unit','invoice_line_ids')
 def on_change_PricePerUnit(self):
  if self.price_subtotal:
   try:
    self.PricePerUnit = self.price_subtotal / self.TotalWeight
   except ZeroDivisionError:
    self.PricePerUnit = 0

in sale.order xml file

<odoo>
  <data>
<record model="ir.ui.view" id="sale_order_view_inherit"> 
    <field name="name">sale.order.view.inherit</field>
    <field name="model">sale.order</field>
    <field name="inherit_id" ref="sale.view_order_form"/>
    <field name="arch" type="xml"> 
        <xpath expr="/form/sheet/notebook/page/field[@name='order_line']/tree/field[@name='product_uom_qty']" position="after">
            <field name="TotalWeight"/>
   <field name="PricePerUnit"/>
        </xpath> 
    </field> 
 </record>
</data>
</odoo>

in account.invoice xml file

<odoo>
  <data>
<record model="ir.ui.view" id="account_view_inherit"> 
    <field name="name">account.view.inherit</field>
    <field name="model">account.invoice</field>
    <field name="inherit_id" ref="account.invoice_form"/>
    <field name="arch" type="xml"> 
        <xpath expr="/form/sheet/notebook/page/field[@name='invoice_line_ids']/tree/field[@name='quantity']" position="after">
            <field name="TotalWeight"/>
   <field name="PricePerUnit"/>
        </xpath> 
    </field> 
 </record>
</data>
</odoo>


1
アバター
破棄
Mohammed Amal N

Try overriding _create_invoice method in sale.advance.payment.inv model.

That method is creating invoice when you click create invoice button

Vootipong Limpanitivat
著作者

can you give some example on it if possible please thank you

アバター
Sudhir Arya (ERP Harbor Consulting Services)
最善の回答

You want to pass the fields value of sale.order.line to account.invoice.line object. For that you need to override `_prepare_invoice_line` method of sale.order.line object.

Like this:

class SaleOrderLine(models.Model):
    _inherit = 'sale.order.line'

    @api.multi
    def _prepare_invoice_line(self, qty):
        res = super(SaleOrderLine, self)._prepare_invoice_line(qty)
        res.update({'PricePerUnit': self.PricePerUnit, 'TotalWeight': self.TotalWeight})
        return res

Hope this will help you.

Sudhir Arya
ERP Harbor Consulting Services
skype: 
sudhir@erpharbor.com  website: http://www.erpharbor.com
7
アバター
破棄
ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
関連投稿 返信 ビュー 活動
Custom Fields Value Disappear when perform action & Passing Custom Field Value to Account Invoice Line ?
fields custom sale.order.line account.invoice.line odoo10
アバター
アバター
アバター
3
6月 17
6999
[odoo10] how to remove unnecessary columns 解決済
fields odoo10
アバター
アバター
2
9月 18
6761
Remove Calendar from Date field
fields odoo10
アバター
アバター
1
4月 18
4044
How to trigger "onclick" event while clicking on mobile/phone number in Odoo 10
fields odoo10
アバター
0
1月 18
4860
Odoo 10 use compute field with another field data
fields odoo10
アバター
0
9月 17
3861
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育プログラム
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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