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
4ee73655
Commit
4ee73655
authored
May 05, 2022
by
Damien Moulard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RAY: admin add product fix ui issues
parent
23e4c295
Pipeline
#2180
passed with stage
in 1 minute 27 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
11 deletions
+23
-11
shelfs_admin.css
shelfs/static/css/shelfs_admin.css
+7
-1
shelfs_admin.js
shelfs/static/js/shelfs_admin.js
+15
-9
admin.html
templates/shelfs/admin.html
+1
-1
No files found.
shelfs/static/css/shelfs_admin.css
View file @
4ee73655
...
...
@@ -20,4 +20,9 @@ label {
width
:
140px
;
text-align
:
right
;
margin-right
:
5px
;
}
}
.p_action_icon
{
cursor
:
pointer
;
margin-right
:
15px
;
}
\ No newline at end of file
shelfs/static/js/shelfs_admin.js
View file @
4ee73655
...
...
@@ -7,8 +7,8 @@ var main_content = $('#main-content'),
shelf_name
=
create_form
.
find
(
'input[name="name"]'
),
description
=
create_form
.
find
(
'textarea[name="description"]'
),
eye
=
'<i class="fas fa-eye"></i>'
,
delete_icon
=
'<i class="fas fa-trash"></i>'
,
print_icon
=
'<i class="fas fa-print"></i>'
,
delete_icon
=
'<i class="fas fa-trash
p_action_icon
"></i>'
,
print_icon
=
'<i class="fas fa-print
p_action_icon
"></i>'
,
add_icon
=
'<i class="fas fa-plus-circle"></i>'
,
edit_icon
=
'<i class="fas fa-edit"></i>'
,
download_icon
=
'<i class="fas fa-download"></i>'
,
...
...
@@ -367,6 +367,7 @@ var printProduct = function () {
let
tr_to_print
=
clicked
.
closest
(
'tr'
);
let
barcode
=
tr_to_print
.
data
(
'bc'
)
openModal
();
try
{
$
.
ajax
({
url
:
'/products/get_product_data'
,
...
...
@@ -378,12 +379,19 @@ var printProduct = function () {
$
.
ajax
({
url
:
'/products/label_print/'
+
product_tmpl_id
})
.
done
(
function
(
res
)
{
alert
(
'Impression lancée'
)
.
done
(
function
(
res_print
)
{
closeModal
();
if
(
"error"
in
res_print
.
res
)
{
console
.
log
(
res_print
.
res
);
alert
(
'Une erreur est survenue...'
);
}
else
{
alert
(
'Impression lancée'
);
}
})
})
}
catch
(
e
)
{
alert
(
'Une erreur est survenue...'
)
closeModal
();
alert
(
'Une erreur est survenue...'
);
}
};
...
...
@@ -413,11 +421,9 @@ var addProductToList = async function(barcode) {
.
appendTo
(
pdt_line
);
$
(
'<td>'
).
text
(
odoo_product
.
data
[
barcodes
.
keys
.
name
])
.
appendTo
(
pdt_line
);
$
(
'<td>'
).
html
(
odoo_product
.
data
[
barcodes
.
keys
.
standard_price
])
.
appendTo
(
pdt_line
);
$
(
'<td>'
).
html
(
delete_icon
)
$
(
'<td>'
).
html
(
odoo_product
.
data
[
barcodes
.
keys
.
standard_price
]
+
" €"
)
.
appendTo
(
pdt_line
);
$
(
'<td>'
).
html
(
print_icon
)
$
(
'<td>'
).
html
(
delete_icon
+
" "
+
print_icon
)
.
appendTo
(
pdt_line
);
adding_pdts_tpl
.
find
(
'#added_products tbody'
).
append
(
pdt_line
);
main_content
.
find
(
'button.add-products'
).
css
(
'display'
,
'block'
)
...
...
templates/shelfs/admin.html
View file @
4ee73655
...
...
@@ -63,7 +63,7 @@
<th>
Code-barre Odoo
</th>
<th>
Article
</th>
<th>
Prix
</th>
<th>
Action
</th>
<th>
Action
s
</th>
</tr>
</thead>
<tbody>
...
...
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