Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
4442 มุมมอง

In invoice screen when i try to validate an invoice without adding any line items it throws me an error whereas in accounting -> journal entries I'm able to post an entry without adding any line items. How can i change this behavior of journal entries to the same as invoice.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

For this what you can do is that, inherit the account.move and super the function of the POST) action_post) button and check whether the end user entered the journal items(line_ids), if lines_ids is not entered you can return a warning message.


def action_post(self):

    res = super(classname, self).action_post()

    if not self.line_ids:

        # return warning message

        raise ValidationError(_("No Journal Items"))

    return res


The code is just typed , not tested, so check and make necessary changes


Thanks

อวตาร
ละทิ้ง
ผู้เขียน

Thanks for the answer Raphy, I'll look into it and update the same.

ผู้เขียน

It worked like a charm, Thanks bud!

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ส.ค. 22
7381
1
พ.ค. 19
6149
12
พ.ค. 19
4940
3
เม.ย. 23
5945
2
ก.ค. 25
1714