Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dwsproject
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dws
dwsproject
Commits
9802149c
Commit
9802149c
authored
Sep 18, 2025
by
马丽华
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mlh_jzjx_project' into 'master'
结余字段存表 See merge request
!28
parents
3552e830
d0c23ebe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletions
+24
-1
roke_product_income_expense/models/product_income_expense.py
+24
-1
No files found.
roke_product_income_expense/models/product_income_expense.py
View file @
9802149c
import
calendar
import
requests
import
logging
import
datetime
as
date_time
from
datetime
import
datetime
from
odoo
import
models
,
fields
,
api
,
_
from
odoo.exceptions
import
ValidationError
_logger
=
logging
.
getLogger
(
__name__
)
class
ProductIncomeExpense
(
models
.
Model
):
...
...
@@ -13,7 +15,7 @@ class ProductIncomeExpense(models.Model):
abstract
=
fields
.
Text
(
string
=
"摘要"
,
index
=
True
)
income
=
fields
.
Float
(
string
=
"收入"
)
expenditure
=
fields
.
Float
(
string
=
"支出"
)
balance
=
fields
.
Float
(
string
=
"结余"
,
compute
=
"_compute_balance"
)
balance
=
fields
.
Float
(
string
=
"结余"
,
compute
=
"_compute_balance"
,
store
=
True
)
machinery_type
=
fields
.
Selection
([(
"烘干桶"
,
"烘干桶"
),
(
"钣金"
,
"钣金"
),
(
"颗粒机"
,
"颗粒机"
),
(
"其他"
,
"其他"
)],
default
=
"其他"
,
string
=
"类型"
,
index
=
True
)
customer
=
fields
.
Char
(
string
=
"客户"
,
index
=
True
)
...
...
@@ -34,3 +36,24 @@ class ProductIncomeExpense(models.Model):
v
.
balance
=
round
(
0
+
v
.
income
-
v
.
expenditure
,
2
)
else
:
v
.
balance
=
round
(
last_data
.
balance
+
v
.
income
-
v
.
expenditure
,
2
)
def
update_all_balances
(
self
):
"""定时任务手动批量更新所有记录的结余字段值"""
# 确保记录按正确顺序处理(与计算逻辑保持一致)
records
=
self
.
search
([],
order
=
"business_date asc, create_date asc"
)
# 关闭自动提交,提高批量处理性能
self
.
env
.
cr
.
autocommit
(
False
)
try
:
# 调用计算方法
records
.
_compute_balance
()
# 手动提交事务
self
.
env
.
cr
.
commit
()
return
True
except
Exception
as
e
:
# 发生错误时回滚
self
.
env
.
cr
.
rollback
()
_logger
.
error
(
f
"更新结余字段失败: {str(e)}"
)
return
False
finally
:
# 恢复自动提交设置
self
.
env
.
cr
.
autocommit
(
True
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment