72. How To Create Sequence And Generate Sequential Value For Record In Odoo || Odoo 15 Tutorials

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

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

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

    Thanks a lot

    • @OdooMates
      @OdooMates  10 หลายเดือนก่อน

      Most welcome

  • @yenibirkanal-ir3vh
    @yenibirkanal-ir3vh 10 หลายเดือนก่อน

    is there any way to inherit ir.sequance value ? I want the change sale order default sequance padding but its not working.

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

    Please make a video how to put seq. numbers in many2many or one2many field...

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

    @api.model
    def create(self, vals):
    vals['emp_id'] = self.env['ir.sequence'].next_by_code('employee.sequence')
    res = super(EmployeeProfile, self).create(vals)
    return res
    This is my code for auto generate sequence for record bro. When i try to execute the code error occurred. Which is "Name : EmployeeProfile is not defined". My doubt is what indicates the HospitalPatient in return part in your video. Kindly rply me bro.

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

    I tried to use this method to change the invoice sequence to( year/sequence)but it didn't work how can I process??I'm using odoo 14.
    Thanks a lot.

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

      From odoo 14, the sequence of invoice is not generated using Ir. resequence, if you need to achieve the same we have to customize and make it to respect the ir sequence, so did you made any such changes in odoo 14 ?

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

      th-cam.com/video/1OlfwZcPlrg/w-d-xo.html

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

    Please how to add Sequence to Appointements OP0001 ??

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

      the same is shown in this video right

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

      @@OdooMates I have a problem, when I click on save button the sequence change twice : first I get A0001 then when I save it became A0002

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

    asset_code = fields.Char(string='asset_code', default=lambda self: self.env['ir.sequence'].next_by_code('asset_code.equipment.seq'))

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

      Any issues here ??

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

    does this work in 14?

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

    评论不上

  • @SHAHRUKHKHAN-iw9xv
    @SHAHRUKHKHAN-iw9xv ปีที่แล้ว

    its not working please help Odoo Mates