Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
third-party
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
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cooperatic-foodcoops
third-party
Commits
a98a686b
Commit
a98a686b
authored
Jun 11, 2023
by
François C.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add total to stock valuation
parent
8db70778
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
models.py
stock/models.py
+2
-0
stock_values.js
stock/static/js/stock_values.js
+20
-5
No files found.
stock/models.py
View file @
a98a686b
...
...
@@ -373,6 +373,8 @@ class CagetteStock(models.Model):
cond
=
[[
'qty_available'
,
'>'
,
0
],
[
'active'
,
'='
,
True
]]
fields
=
[
"barcode"
,
"display_name"
,
"qty_available"
,
"standard_price"
]
articles
=
api
.
search_read
(
'product.product'
,
cond
,
fields
,
1000000
)
for
a
in
articles
:
a
[
'total'
]
=
a
[
'qty_available'
]
*
a
[
'standard_price'
]
except
Exception
as
e
:
coop_logger
.
error
(
"Erreur get_valuable_stock :
%
s"
,
str
(
e
))
return
articles
...
...
stock/static/js/stock_values.js
View file @
a98a686b
...
...
@@ -6,14 +6,29 @@ $(document).ready(function() {
"data"
:
""
},
"columns"
:[
{
data
:
"barcode"
,
"title"
:
"Code-barre"
,
"width"
:
"
50%
"
},
{
data
:
"barcode"
,
"title"
:
"Code-barre"
,
"width"
:
"
10em
"
},
{
data
:
"display_name"
,
"title"
:
"Article"
,
"width"
:
"50%"
},
{
data
:
"qty_available"
,
"title"
:
"Stock"
,
"width"
:
"15%"
{
data
:
"qty_available"
,
"title"
:
"Stock"
,
"width"
:
"5em"
,
render
:
function
(
data
)
{
if
(
data
==
parseInt
(
data
,
10
))
{
return
data
}
else
{
return
data
.
toFixed
(
3
)
}
}
},
{
data
:
"standard_price"
,
"title"
:
"Prix achat"
,
"width"
:
"15%"
{
data
:
"standard_price"
,
"title"
:
"Prix Achat"
,
"width"
:
"4em"
,
render
:
function
(
data
)
{
return
data
.
toFixed
(
2
)
}
},
{
data
:
"total"
,
"title"
:
"Total"
,
render
:
function
(
data
,
type
,
full
)
{
return
data
.
toFixed
(
2
)
}
}
],
...
...
@@ -24,7 +39,7 @@ $(document).ready(function() {
"desc"
]
],
"
iDisplayLength"
:
50
,
"
paging"
:
true
,
"language"
:
{
"emptyTable"
:
"Pas de donnée"
,
"info"
:
"Affiché : lignes _START_ à _END_ sur _TOTAL_"
,
...
...
@@ -55,6 +70,6 @@ $(document).ready(function() {
className
:
'btn--primary btn_export'
},
],
dom
:
'<lr<t>ip><"clear"><B>'
,
dom
:
'<lr<t>ip><"clear"><B>'
});
});
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