Hello, I'm a developper and for my company, i need to pre-fill the accounting documents in ODOO 15. I can add all the information but the debit and credit return this error:
"Cannot create unbalanced journal entry. Differences debit - credit"
my code:
data_list = {'state': 'draft', 'date': date, 'name': 'title', 'ref': 'ref', 'line_ids': [ (0,0,{'account_id': 754, 'name': 'SOME TEXT', 'credit': 100}, {'account_id': 532, 'name': 'REMISE CB', 'debit': 100 }) ]}
subscription_model.create(list)
I try to save all the lines at the same time in ODOO but i have still the error. All I found is a method to cancel the function (check_move_validity = False) who calculate the difference between credit and debit but i don't known how call this function in my python program. If someone can help me please
Have a good day !
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hi, Your provided data for line_ids is not correct so it's create a journal entry with only one line so you got the error . Please use the below:
data_list = {'state': 'draft', 'date': date, 'name': 'title', 'ref': 'ref',
'line_ids': [
(0,0,{'account_id': 754, 'name': 'SOME TEXT', 'credit': 100}),
(0,0,{'account_id': 532, 'name': 'REMISE CB', 'debit': 100 })
]
}
Hellooo! How can I get the total of the "debit" rounded, since I have added several accounting lines that will go in the debit but when adding the total (due to rounding) it always ends up with 1 cent left over or missing and it won't let me create the entry .
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 1 25
|
961 | ||
|
1
thg 10 16
|
10453 | ||
|
1
thg 11 24
|
1439 | ||
|
0
thg 6 16
|
3664 | ||
|
3
thg 10 24
|
13259 |
Indeed, it works! Thanks very much ! It was so simple... Thanks to you
Have a nice day