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
8dd016d7
Commit
8dd016d7
authored
Mar 10, 2022
by
Etienne Freiss
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
6aa05fdd
Pipeline
#1917
passed with stage
in 1 minute 27 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
8 deletions
+20
-8
inscriptions.js
members/static/js/inscriptions.js
+20
-8
No files found.
members/static/js/inscriptions.js
View file @
8dd016d7
...
...
@@ -581,8 +581,7 @@ $('#add_binome').click(function() {
delete
current_coop
.
is_associated_people
;
delete
current_coop
.
shift_template
;
}
}
else
{
}
else
{
$
(
'#associate_area'
).
show
();
$
(
'.member_choice'
).
removeClass
(
'choice_active'
);
$
(
'#existing_member_choice_action'
).
hide
();
...
...
@@ -607,6 +606,12 @@ $('.member_choice').on('click', function() {
});
$
(
'#shift_calendar'
).
click
(
show_shift_calendar
);
$
(
'#search_member_input'
).
keypress
((
event
)
=>
{
if
(
event
.
keyCode
==
13
)
{
event
.
preventDefault
();
searchMembersForAssociate
();
}
});
//get_latest_odoo_coop_bb();
update_self_records
();
...
...
@@ -681,10 +686,10 @@ function display_possible_members() {
}
$
(
document
).
ready
(
function
()
{
retrieve_and_draw_shift_tempates
();
// Set action to search for the member
$
(
'#search_member_button'
).
on
(
'click'
,
function
()
{
/**
* Search for member
*/
function
searchMembersForAssociate
()
{
let
search_str
=
$
(
'#search_member_input'
).
val
();
if
(
search_str
)
{
...
...
@@ -715,11 +720,18 @@ $(document).ready(function() {
});
}
});
}
else
{
}
else
{
members_search_results
=
[];
display_possible_members
();
}
}
$
(
document
).
ready
(
function
()
{
retrieve_and_draw_shift_tempates
();
// Set action to search for the member
$
(
'#search_member_button'
).
on
(
'click'
,
function
()
{
searchMembersForAssociate
();
});
});
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