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
b4b9fae1
Commit
b4b9fae1
authored
Jun 08, 2021
by
Arnaud B
Committed by
François C.
Jun 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Affichage de la qté commandée dans la colonne qté lors de la réception
parent
ab89e8fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
reception_produits.js
reception/static/js/reception_produits.js
+7
-3
No files found.
reception/static/js/reception_produits.js
View file @
b4b9fae1
...
...
@@ -291,7 +291,6 @@ function initLists() {
dom
:
'lrtip'
,
// Remove the search input from that table
language
:
{
url
:
'/static/js/datatables/french.json'
}
});
// Init table for processed content
table_processed
=
$
(
'#table_processed'
).
DataTable
({
data
:
list_processed
,
...
...
@@ -327,8 +326,13 @@ function initLists() {
{
data
:
"product_qty"
,
title
:
"Qté"
,
className
:
"dt-body-center"
,
visible
:
(
reception_status
==
"False"
)
className
:
"dt-head-center dt-body-center"
,
visible
:
(
reception_status
==
"False"
),
render
:
function
(
data
,
type
,
full
)
{
let
disp
=
[
full
.
product_qty
,
(
full
.
old_qty
!==
undefined
)?
full
.
old_qty
:
full
.
product_qty
].
join
(
"/"
);
return
disp
;
},
orderable
:
false
},
{
data
:
"price_unit"
,
...
...
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