跳至内容
菜单
此问题已终结
1 回复
1085 查看

Hi
The adviser requested to do this (according to the photo)
In fact, all invoices and accounting documents should have a field for the current and previous number after approval and be arranged according to the due date.

Has anyone had a similar experience?


old Number
INV/0003
INV/0002
INV/0001
INV/0004
INV/0006
INV/0005

Due Date
2021/05/10
2021/05/11
2021/05/15
2021/05/18
2021/06/10
2021/06/12

Number
INV/0001
INV/0002
INV/0003
INV/0004
INV/0005
INV/0006


形象
丢弃
编写者

_inherit = 'account.move.line'
I have the document number (move_name) with regex
I put it in the list with the due date
And then I sorted the documents and saved the new number in a field
It will soon be available in the Iranian Accounting Localization module
https://github.com/FadooIR/l10n-iran/tree/14.0/l10_ir_accounting

最佳答案

sorted_record = self.env['your_model_name'].search([], order='due_date asc')
above mention, code display the record an ascending order

sorted_record = self.env['your_model_name'].search([], order='due_date desc')

above mention, code display the record an descending order



形象
丢弃
相关帖文 回复 查看 活动
2
10月 24
1487
1
7月 22
2013
0
2月 25
810
1
8月 19
2664
2
12月 18
2960