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
33bb5937
Commit
33bb5937
authored
Jun 30, 2021
by
Damien Moulard
Browse files
Options
Browse Files
Download
Plain Diff
merge conflict
parents
20c13305
211f61c9
Pipeline
#1126
passed with stage
in 1 minute 23 seconds
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
oders_helper_style.css
orders/static/css/oders_helper_style.css
+1
-1
orders_helper.js
orders/static/js/orders_helper.js
+5
-1
models.py
products/models.py
+0
-0
No files found.
orders/static/css/oders_helper_style.css
View file @
33bb5937
...
...
@@ -108,7 +108,7 @@
width
:
300px
;
border-radius
:
10px
;
}
#products_table
.help
{
cursor
:
help
;}
#table_header_select_all
{
display
:
flex
;
align-content
:
center
;
...
...
orders/static/js/orders_helper.js
View file @
33bb5937
...
...
@@ -987,7 +987,8 @@ function prepare_datatable_data(product_ids = []) {
qty_available
:
+
parseFloat
(
product
.
qty_available
).
toFixed
(
3
),
daily_conso
:
product
.
daily_conso
,
purchase_ok
:
product
.
purchase_ok
,
uom
:
product
.
uom_id
[
1
]
uom
:
product
.
uom_id
[
1
],
stats
:
"Ecart type: "
+
product
.
sigma
+
", % jours sans vente = "
+
(
product
.
vpc
)
*
100
};
const
computed_data
=
_compute_product_data
(
product
);
...
...
@@ -1056,6 +1057,9 @@ function prepare_datatable_columns() {
{
data
:
"daily_conso"
,
title
:
"Conso moy /jour"
,
render
:
function
(
data
,
type
,
full
)
{
return
'<div class="help" title="'
+
full
.
stats
+
'">'
+
data
+
'</div>'
;
},
className
:
"dt-body-center"
,
width
:
"6%"
}
...
...
products/models.py
View file @
33bb5937
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