Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re2o
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nounous
re2o
Commits
f5eb4616
Commit
f5eb4616
authored
Sep 01, 2018
by
detraz
Committed by
klafyvel
Sep 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename note en note_kfet
parent
6b1597c0
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
5 additions
and
5 deletions
+5
-5
cotisations/payment_methods/__init__.py
cotisations/payment_methods/__init__.py
+2
-2
cotisations/payment_methods/note_kfet/__init__.py
cotisations/payment_methods/note_kfet/__init__.py
+0
-0
cotisations/payment_methods/note_kfet/forms.py
cotisations/payment_methods/note_kfet/forms.py
+0
-0
cotisations/payment_methods/note_kfet/models.py
cotisations/payment_methods/note_kfet/models.py
+1
-1
cotisations/payment_methods/note_kfet/note.py
cotisations/payment_methods/note_kfet/note.py
+0
-0
cotisations/payment_methods/note_kfet/urls.py
cotisations/payment_methods/note_kfet/urls.py
+0
-0
cotisations/payment_methods/note_kfet/views.py
cotisations/payment_methods/note_kfet/views.py
+0
-0
cotisations/payment_methods/urls.py
cotisations/payment_methods/urls.py
+2
-2
No files found.
cotisations/payment_methods/__init__.py
View file @
f5eb4616
...
...
@@ -127,11 +127,11 @@ method to your model, where `form` is an instance of
"""
from
.
import
comnpay
,
cheque
,
balance
,
note
,
urls
from
.
import
comnpay
,
cheque
,
balance
,
note
_kfet
,
urls
PAYMENT_METHODS
=
[
comnpay
,
cheque
,
balance
,
note
note
_kfet
]
cotisations/payment_methods/note/__init__.py
→
cotisations/payment_methods/note
_kfet
/__init__.py
View file @
f5eb4616
File moved
cotisations/payment_methods/note/forms.py
→
cotisations/payment_methods/note
_kfet
/forms.py
View file @
f5eb4616
File moved
cotisations/payment_methods/note/models.py
→
cotisations/payment_methods/note
_kfet
/models.py
View file @
f5eb4616
...
...
@@ -60,6 +60,6 @@ class NotePayment(PaymentMethodMixin, models.Model):
def
end_payment
(
self
,
invoice
,
request
):
return
redirect
(
reverse
(
'cotisations:note:note_payment'
,
'cotisations:note
_kfet
:note_payment'
,
kwargs
=
{
'factureid'
:
invoice
.
id
}
))
cotisations/payment_methods/note/note.py
→
cotisations/payment_methods/note
_kfet
/note.py
View file @
f5eb4616
File moved
cotisations/payment_methods/note/urls.py
→
cotisations/payment_methods/note
_kfet
/urls.py
View file @
f5eb4616
File moved
cotisations/payment_methods/note/views.py
→
cotisations/payment_methods/note
_kfet
/views.py
View file @
f5eb4616
File moved
cotisations/payment_methods/urls.py
View file @
f5eb4616
...
...
@@ -19,10 +19,10 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from
django.conf.urls
import
include
,
url
from
.
import
comnpay
,
cheque
,
note
from
.
import
comnpay
,
cheque
,
note
_kfet
urlpatterns
=
[
url
(
r
'^comnpay/'
,
include
(
comnpay
.
urls
,
namespace
=
'comnpay'
)),
url
(
r
'^cheque/'
,
include
(
cheque
.
urls
,
namespace
=
'cheque'
)),
url
(
r
'^note
/'
,
include
(
note
.
urls
,
namespace
=
'note
'
)),
url
(
r
'^note
_kfet/'
,
include
(
note_kfet
.
urls
,
namespace
=
'note_kfet
'
)),
]
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