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
4b45b58b
An error occurred while fetching merge requests data.
Commit
4b45b58b
authored
3 years ago
by
Damien Moulard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'aide_a_la_commande' into dev_cooperatic
parents
d5b2e20a
33bb5937
dev_cooperatic
…
#5673_bug_calendrier_echange_service
3832-makeups-and-member-status-update
4081
4444_improve_presence_recording
4709
4778-reception-dont-get-finished-orders
4809-remove-shelf-value-col-to-reduce-server-load
4880-rapports-reception-faux
4950-douchage-appli-reception
5474-et-5462-Voir-les-rattrapages-choisis-dans-admin-bdm-et-corrige-lenteur-affichage-admin-rattrapages
5641-reception-trier-a-la-maj-prix-dans-ordre-de-pointage-quantites
6286_bug_encaissement_souscription_cheque_espece
6813-marking-parent-gone-when-unpairing-binom-does-not-unsuscribe-parent-from-shift-template
6832--certaines-absences-engendrent-une-erreur
7723-7559-change-purchase-order-workflow-django-side
7731-third-party-side-brinks-pos-export-not-working
7747-inventaire-par-article
7800-make-test-solution-work
7848-cannot-validate-qty-with-decimal-on-kg-product
adaptation_supercafoutch
adaptation_supercoop
adaptation_supercoop_supercafoutch
adpatation_chouette
assistance_import_article
coop_dev_necessitant_modules_bdm_odoo_modifies
correctif_nb_rattrapages_creation_binome_avec_ajout_automatique_au_point_negatif
dev_lgds
dev_principale
dev_principale_clean
docker
export_capital_detenu
fix_bug_process_picking
fusion_custom_graoucoop
graoucoop_backup
graoucoop_prod
graoucoop_tmp
hot_fix_shelf_labels_auto_print
howto
impression_etiquettes_rayons
integration_lien_precommandes_dans_espace_membre
lacagette_prod
local_branch
master
meal-voucher-and-label-printer-software-bug
migration-v12
pour_graoucoop_prod
pour_version_prod_cagette
refonte_espace_membre_sc
retouches_tickets_supercoop
sc-setup-stock-app
supercafoutch-preprod
supercafoutch-prod-20221003
supercafoutch_prod
ticket_4146
20210701
supercafoutch_20250120_151258
supercafoutch_20250120_150340
supercafoutch_20240909_080630
supercafoutch_20240609_115709
supercafoutch_20240212_082431
supercafoutch_20240107_181851
supercafoutch_prod_until_240107
supercafoutch-prod-20221003
supercafoutch-230911
supercafoutch-230824
supercafoutch-230823
supercafoutch-230823-the-true-one
migration-v12-tag
lacagette_20240310_074751
lacagette_20240107_122554
lacagette_20240107_120916
graoucoop_20240609_122614
cagette_testtag
cagette-230814
cagette-230630
Pipeline
#1127
passed with stage
in 1 minute 21 seconds
Changes
6
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
100 additions
and
25 deletions
+100
-25
oders_helper_style.css
orders/static/css/oders_helper_style.css
+12
-3
orders_helper.js
orders/static/js/orders_helper.js
+75
-10
models.py
products/models.py
+1
-1
urls.py
products/urls.py
+1
-1
views.py
products/views.py
+3
-4
helper.html
templates/orders/helper.html
+8
-6
No files found.
orders/static/css/oders_helper_style.css
View file @
4b45b58b
...
...
@@ -66,10 +66,20 @@
position
:
absolute
;
}
#actions_buttons_area
{
#
main_content
.
actions_buttons_area
{
position
:
absolute
;
width
:
100%
;
top
:
0
;
right
:
0
;
display
:
flex
;
justify-content
:
space-between
;
}
#orders_created
.actions_buttons_area
{
position
:
absolute
;
width
:
100%
;
top
:
0
;
display
:
flex
;
justify-content
:
flex-start
;
}
/* -- Order data */
...
...
@@ -193,7 +203,6 @@
/* - Orders created screen */
.order_created_header
{
margin-top
:
15px
;
margin-bottom
:
40px
;
}
...
...
This diff is collapsed.
Click to expand it.
orders/static/js/orders_helper.js
View file @
4b45b58b
...
...
@@ -27,6 +27,8 @@ var dbc = null,
},
fingerprint
=
null
;
var
clicked_order_pill
=
null
;
/* - UTILS */
...
...
@@ -53,6 +55,7 @@ function reset_data() {
package_qty
:
null
,
price
:
null
};
clicked_order_pill
=
null
;
}
/**
...
...
@@ -109,17 +112,32 @@ function add_product() {
return
-
1
;
}
/*
onst product_ids = products.map(p => p.id);
if (product_ids.length > 0) {
clicked_order_pill.find('.pill_order_name').empty().append(`<i class="fas fa-spinner fa-spin"></i>`);
$.ajax({
type
:
'GET'
,
url
:
'/products/get_product_for_order_helper/'
+
product
.
tpl_id
,
type: 'POST',
url: '/products/get_product_for_order_helper',
data: JSON.stringify(product_ids),
dataType:"json",
*/
$
.
ajax
({
type
:
'POST'
,
url
:
'/products/get_product_for_order_helper'
,
data
:
JSON
.
stringify
([
product
.
tpl_id
]),
dataType
:
"json"
,
traditional
:
true
,
contentType
:
"application/json; charset=utf-8"
,
success
:
function
(
data
)
{
if
(
typeof
data
.
id
!=
"undefined"
)
{
data
.
suppliersinfo
=
[];
data
.
default_code
=
' '
;
products
.
unshift
(
data
);
let
res
=
data
.
products
[
0
];
if
(
typeof
res
.
id
!=
"undefined"
)
{
res
.
suppliersinfo
=
[];
res
.
default_code
=
' '
;
products
.
unshift
(
res
);
update_main_screen
({
'sort_order_dir'
:
'desc'
});
update_cdb_order
();
}
else
{
...
...
@@ -174,6 +192,51 @@ function compute_products_coverage_qties() {
}
}
/**
* Update order products data in case they have changed.
*/
function
check_products_data
()
{
return
new
Promise
((
resolve
,
reject
)
=>
{
const
product_ids
=
products
.
map
(
p
=>
p
.
id
);
if
(
product_ids
.
length
>
0
)
{
clicked_order_pill
.
find
(
'.pill_order_name'
).
empty
().
append
(
`<i class="fas fa-spinner fa-spin"></i>`
);
$
.
ajax
({
type
:
'POST'
,
url
:
'/products/get_product_for_order_helper'
,
data
:
JSON
.
stringify
(
product_ids
),
dataType
:
"json"
,
traditional
:
true
,
contentType
:
"application/json; charset=utf-8"
,
success
:
function
(
data
)
{
for
(
let
product
of
data
.
products
)
{
const
p_index
=
products
.
findIndex
(
p
=>
p
.
id
==
product
.
id
);
// Override products data with new data
products
[
p_index
]
=
{
...
products
[
p_index
],
...
product
};
}
resolve
();
},
error
:
function
(
data
)
{
err
=
{
msg
:
"erreur serveur lors de la vérification des données des articles"
,
ctx
:
'check_products_data'
};
if
(
typeof
data
.
responseJSON
!=
'undefined'
&&
typeof
data
.
responseJSON
.
error
!=
'undefined'
)
{
err
.
msg
+=
' : '
+
data
.
responseJSON
.
error
;
}
report_JS_error
(
err
,
'orders'
);
alert
(
`Erreur lors de la vérification des données des articles. Certaines données peuvent être erronées`
);
// Don't block process if this call fails
resolve
();
}
});
}
else
{
resolve
();
}
});
}
/* - SUPPLIERS */
...
...
@@ -533,7 +596,8 @@ function generate_inventory() {
* Event fct: on click on an order button
*/
function
order_pill_on_click
()
{
let
order_name_container
=
$
(
this
).
find
(
'.pill_order_name'
);
clicked_order_pill
=
$
(
this
);
let
order_name_container
=
clicked_order_pill
.
find
(
'.pill_order_name'
);
let
doc_id
=
$
(
order_name_container
).
text
();
dbc
.
get
(
doc_id
).
then
((
doc
)
=>
{
...
...
@@ -784,11 +848,12 @@ function goto_main_screen(doc) {
products
=
order_doc
.
products
;
selected_suppliers
=
order_doc
.
selected_suppliers
;
// TODO update products moving data (stock, qté entrante, conso moy/jour
)
check_products_data
(
)
.
then
(()
=>
{
update_cdb_order
();
update_main_screen
();
switch_screen
();
})
}
function
back
()
{
...
...
@@ -1344,8 +1409,8 @@ function update_order_selection_screen() {
$
(
".order_pill"
).
off
();
let
existing_orders_container
=
$
(
"#existing_orders"
);
existing_orders_container
.
empty
();
$
(
'#new_order_name'
).
val
(
''
);
dbc
.
allDocs
({
include_docs
:
true
...
...
This diff is collapsed.
Click to expand it.
products/models.py
View file @
4b45b58b
...
...
@@ -482,7 +482,7 @@ class CagetteProducts(models.Model):
and
(
p
[
"date_end"
]
is
False
or
p
[
"date_end"
]
is
not
False
and
p
[
"date_end"
]
>=
today
)):
ptids
.
append
(
p
[
"product_tmpl_id"
][
0
])
else
:
ptids
=
pids
ptids
=
[
int
(
x
)
for
x
in
pids
]
# Get products templates
f
=
[
...
...
This diff is collapsed.
Click to expand it.
products/urls.py
View file @
4b45b58b
...
...
@@ -5,7 +5,7 @@ from . import views
urlpatterns
=
[
url
(
r'^$'
,
views
.
home
),
url
(
r'^simple_list$'
,
views
.
get_simple_list
),
url
(
r'^get_product_for_order_helper
/([0-9]+)
$'
,
views
.
get_product_for_order_helper
),
url
(
r'^get_product_for_order_helper$'
,
views
.
get_product_for_order_helper
),
url
(
r'^get_product_data$'
,
views
.
get_product_data
),
url
(
r'^get_products_stdprices$'
,
views
.
get_products_stdprices
),
url
(
r'^update_product_stock$'
,
views
.
update_product_stock
),
...
...
This diff is collapsed.
Click to expand it.
products/views.py
View file @
4b45b58b
...
...
@@ -39,12 +39,11 @@ def get_simple_list(request):
return
JsonResponse
(
res
,
safe
=
False
)
def
get_product_for_order_helper
(
request
,
tpl_id
):
def
get_product_for_order_helper
(
request
):
res
=
{}
try
:
result
=
CagetteProducts
.
get_products_for_order_helper
(
None
,
[
int
(
tpl_id
)])
if
len
(
result
[
"products"
])
==
1
:
res
=
result
[
"products"
][
0
]
pids
=
json
.
loads
(
request
.
body
.
decode
())
res
=
CagetteProducts
.
get_products_for_order_helper
(
None
,
pids
)
except
Exception
as
e
:
coop_logger
.
error
(
"get_product_for_help_order_line :
%
s"
,
str
(
e
))
res
[
'error'
]
=
str
(
e
)
...
...
This diff is collapsed.
Click to expand it.
templates/orders/helper.html
View file @
4b45b58b
...
...
@@ -30,10 +30,10 @@
</div>
<div
id=
"main_content"
class=
"page_content"
style=
"display:none;"
>
<div
id=
"back_to_order_selection_from_main
"
>
<button
type=
"button"
class=
"btn--danger"
><i
class=
"fas fa-arrow-left"
></i>
Retour
</button
>
</div>
<div
id=
"actions_buttons_area"
>
<div
class=
"actions_buttons_area
"
>
<button
type=
"button"
class=
"btn--danger"
id=
"back_to_order_selection_from_main"
>
<i
class=
"fas fa-arrow-left"
></i>
Retour
</button
>
<button
type=
"button"
class=
'btn--primary'
id=
"do_inventory"
style=
"display:none;"
>
Faire un inventaire
</button>
...
...
@@ -80,8 +80,10 @@
</div>
<div
id=
"orders_created"
class=
"page_content"
style=
"display:none;"
>
<div
id=
"back_to_order_selection_from_orders_created"
>
<button
type=
"button"
class=
"btn--danger"
><i
class=
"fas fa-arrow-left"
></i>
Retour
</button>
<div
class=
"actions_buttons_area"
>
<button
type=
"button"
class=
"btn--danger"
id=
"back_to_order_selection_from_orders_created"
>
<i
class=
"fas fa-arrow-left"
></i>
Retour
</button>
</div>
<div
class=
"order_created_header txtcenter"
>
<h2>
Commandes créées !
</h2>
...
...
This diff is collapsed.
Click to expand it.
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