How To Add New Field To Sale Report Model In Odoo || Inherit Database View In Odoo

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ม.ค. 2025

ความคิดเห็น • 20

  • @S1eth
    @S1eth ปีที่แล้ว +6

    for Odoo 16, this is what the ovewritten method looks like:
    def _select_additional_fields(self):
    res = super()._select_additional_fields()
    res['confirmed_user_id'] = "s.confirmed_user_id"
    return res

  • @aldrinalvarez22
    @aldrinalvarez22 2 ปีที่แล้ว +1

    Thank you! This helps a lot.

    • @OdooMates
      @OdooMates  2 ปีที่แล้ว

      Glad it helped!

  • @legend-facts
    @legend-facts 2 ปีที่แล้ว

    Odoomates help full thanks alot

    • @OdooMates
      @OdooMates  2 ปีที่แล้ว

      thanks brother

  • @libertadcapital2395
    @libertadcapital2395 2 ปีที่แล้ว +1

    You are the one!😉💪
    Thanks!!!!

    • @OdooMates
      @OdooMates  2 ปีที่แล้ว

      welcome and thanks for the support

  • @legend-facts
    @legend-facts 2 ปีที่แล้ว

    Really help full

    • @OdooMates
      @OdooMates  2 ปีที่แล้ว

      thanks brother

  • @ammaralmoalmi3769
    @ammaralmoalmi3769 2 ปีที่แล้ว

    May I suggest topic of video, I want to build a custom profit and lose report same as odoo way, I do not want to modify the current report. Can you explain the whole logic for generating a report Odoo way.

    • @OdooMates
      @OdooMates  2 ปีที่แล้ว

      th-cam.com/video/SkKAXURqNfQ/w-d-xo.html

    • @ammaralmoalmi3769
      @ammaralmoalmi3769 2 ปีที่แล้ว

      @@OdooMates Maybe I was not clear enough , I was mentioning report as Profit and Loss in accounting module. How to make customer one.

  • @lucianoortiz3736
    @lucianoortiz3736 2 ปีที่แล้ว

    Hello Mate. I have to add a new measure in report.pos.order module. This native module doesn't have the "_query" function, how can I do it without this function? I need to add margin_percent from sale_margin module. Thanks :)

  • @giuliannabortone5247
    @giuliannabortone5247 11 หลายเดือนก่อน

    I’m in Odoo 16 and I want to add a group by suppliers. How can I do this?

  • @samaradel22
    @samaradel22 5 หลายเดือนก่อน

    i am using odoo 17 and iam a developer is there a way I can inherit a report to add group by ??? the report appear when I click on an action button for print
    i am using pycharm

    • @adhilibrahim5263
      @adhilibrahim5263 2 หลายเดือนก่อน

      did you get the solution ?

  • @haythemvip
    @haythemvip ปีที่แล้ว +1

    confirmed user field not in sales order odoo 15

    • @OdooMates
      @OdooMates  ปีที่แล้ว +1

      this is a custom field, we have added to show how to inherit an existing function in odoo in one of our tutorials

  • @PhuongTran-jf7kn
    @PhuongTran-jf7kn 2 ปีที่แล้ว

    i want to add new field that standard_price field of product.product model. How can i do?