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
0
Merge Requests
0
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
Alexis AOUN
third-party
Commits
4fb18b6f
Commit
4fb18b6f
authored
May 28, 2021
by
Damien Moulard
Committed by
Alexis Aoun
Jul 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cell coloring if product not available for supplier
parent
ed037c29
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
6 deletions
+37
-6
oders_helper_style.css
orders/static/css/oders_helper_style.css
+15
-0
orders_helper.js
orders/static/js/orders_helper.js
+22
-6
No files found.
orders/static/css/oders_helper_style.css
View file @
4fb18b6f
...
...
@@ -2,6 +2,14 @@
margin-top
:
30px
;
}
#products_table_filter
{
text-align
:
right
!important
;
}
#products_table_filter
input
{
height
:
50px
;
}
#supplier_input
{
width
:
500px
;
margin-right
:
10px
;
...
...
@@ -12,6 +20,10 @@
width
:
100px
;
}
.product_not_from_supplier
{
background-color
:
#e7e9ed
;
}
#suppliers_container
{
display
:
flex
;
...
...
@@ -39,3 +51,6 @@
margin-left
:
5px
;
cursor
:
pointer
;
}
orders/static/js/orders_helper.js
View file @
4fb18b6f
...
...
@@ -255,14 +255,12 @@ function prepare_datatable_columns() {
data
:
supplier_column_name
(
supplier
),
title
:
supplier
.
display_name
,
width
:
"8%"
,
className
:
"dt-body-center"
,
className
:
"dt-body-center
supplier_input_cell
"
,
render
:
function
(
data
,
type
,
full
)
{
if
(
data
===
false
)
{
return
"X"
;
}
else
{
const
input_id
=
`product_
${
full
.
id
}
_supplier_
${
supplier
.
id
}
_qty_input`
;
return
`<input type="number" class="product_qty_input" id=
${
input_id
}
value=
${
data
}
>`
;
}
}
...
...
@@ -302,13 +300,31 @@ function display_products() {
columns
:
columns
,
order
:
[
[
2
,
5
,
// Order by default by first supplier
"asc"
]
],
dom
:
'lrtip'
,
// TODO: change DOM display?
stripeClasses
:
[],
// Remove datatable cells coloring
orderClasses
:
false
,
iDisplayLength
:
100
,
language
:
{
url
:
'/static/js/datatables/french.json'
}
language
:
{
url
:
'/static/js/datatables/french.json'
},
createdRow
:
function
(
row
,
data
,
dataIndex
)
{
for
(
const
cell_node
of
row
.
cells
)
{
const
cell
=
$
(
cell_node
);
if
(
cell
.
hasClass
(
"supplier_input_cell"
))
{
if
(
cell
.
text
()
==
"X"
)
{
cell
.
addClass
(
'product_not_from_supplier'
);
}
else
{
// TODO: supplier shortage cell coloring, when supplier shortage usecase is defined
// let val = parseFloat(cell.find('.product_qty_input').val());
// if (!isNaN(val) && val < 0) {
// cell.addClass( 'product_supplier_shortage' );
// }
}
}
}
}
});
$
(
'.main'
).
show
();
...
...
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