Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Public contract registry
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Public contract registry
Commits
0d11f15b
Commit
0d11f15b
authored
1 year ago
by
Alexa Valentová
Browse files
Options
Downloads
Patches
Plain Diff
fix permisions reading
parent
d98a8381
No related branches found
No related tags found
No related merge requests found
Pipeline
#17169
passed
1 year ago
Stage: build
Stage: test_deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
contracts/admin.py
+10
-1
10 additions, 1 deletion
contracts/admin.py
with
10 additions
and
1 deletion
contracts/admin.py
+
10
−
1
View file @
0d11f15b
...
@@ -122,11 +122,14 @@ class ContractFileAdmin(
...
@@ -122,11 +122,14 @@ class ContractFileAdmin(
class
ParentContractInlineMixin
:
class
ParentContractInlineMixin
:
def
get_parent_object_is_editable
(
self
,
obj
):
return
obj
.
is_editable_without_approve_permission
def
has_add_permission
(
self
,
request
,
obj
=
None
):
def
has_add_permission
(
self
,
request
,
obj
=
None
):
if
(
if
(
obj
is
not
None
obj
is
not
None
and
not
request
.
user
.
has_perm
(
"
contracts.edit_when_approved
"
)
and
not
request
.
user
.
has_perm
(
"
contracts.edit_when_approved
"
)
and
not
obj
.
is_editable_without_approve_permission
and
not
self
.
get_parent_object_is_editable
()
):
):
return
False
return
False
...
@@ -153,6 +156,9 @@ class ContracteeSignatureRepresentativeInline(
...
@@ -153,6 +156,9 @@ class ContracteeSignatureRepresentativeInline(
extra
=
1
extra
=
1
formset
=
SingnatureRepresentativeFormSet
formset
=
SingnatureRepresentativeFormSet
def
get_parent_object_is_editable
(
self
,
obj
):
return
obj
.
contract
.
is_editable_without_approve_permission
def
get_formset
(
self
,
request
,
obj
=
None
,
**
kwargs
):
def
get_formset
(
self
,
request
,
obj
=
None
,
**
kwargs
):
formset
=
super
().
get_formset
(
request
,
obj
,
**
kwargs
)
formset
=
super
().
get_formset
(
request
,
obj
,
**
kwargs
)
formset
.
request
=
request
formset
.
request
=
request
...
@@ -170,6 +176,9 @@ class ContracteeSignatureInline(ParentContractInlineMixin, NestedStackedInline):
...
@@ -170,6 +176,9 @@ class ContracteeSignatureInline(ParentContractInlineMixin, NestedStackedInline):
class
SigneeSignatureRepresentativeInline
(
class
SigneeSignatureRepresentativeInline
(
ParentContractInlineMixin
,
NestedStackedInline
ParentContractInlineMixin
,
NestedStackedInline
):
):
def
get_parent_object_is_editable
(
self
,
obj
):
return
obj
.
contract
.
is_editable_without_approve_permission
model
=
SigneeSignatureRepresentative
model
=
SigneeSignatureRepresentative
extra
=
0
extra
=
0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment