Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
invoice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
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
web2project
invoice
Commits
2517975a
Commit
2517975a
authored
Jan 26, 2014
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
invoice.class.php: $this->_action is not really used anymore.
parent
2897cfdb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
invoice.class.php
invoice.class.php
+0
-4
No files found.
invoice.class.php
View file @
2517975a
...
...
@@ -89,7 +89,6 @@ class CInvoice extends w2p_Core_BaseObject {
public
function
delete
(
$unused
=
null
)
{
$this
->
clearErrors
();
$this
->
_action
=
'deleted'
;
$q
=
$this
->
_getQuery
();
$q
->
setDelete
(
'invoice_task_queue'
);
$q
->
addWhere
(
'task_queue_id = '
.
$this
->
_task_queue_id
);
...
...
@@ -103,7 +102,6 @@ class CInvoice extends w2p_Core_BaseObject {
public
function
purge
()
{
$this
->
clearErrors
();
$this
->
_action
=
'purged'
;
$q
=
$this
->
_getQuery
();
$q
->
addQuery
(
'invoice_status'
);
$q
->
addTable
(
'invoice'
);
...
...
@@ -146,7 +144,6 @@ class CInvoice extends w2p_Core_BaseObject {
public
function
change_status
(
$stat
)
{
$this
->
clearErrors
();
$this
->
_action
=
'updated'
;
$q
=
$this
->
_getQuery
();
$q
->
addTable
(
'invoice'
);
$q
->
addUpdate
(
'invoice_status'
,
$stat
);
...
...
@@ -161,7 +158,6 @@ class CInvoice extends w2p_Core_BaseObject {
public
function
change_invoice_tag
(
$tag
)
{
$this
->
clearErrors
();
$this
->
_action
=
'updated'
;
$q
=
$this
->
_getQuery
();
$q
->
addTable
(
'invoice'
);
$q
->
addUpdate
(
'invoice_tag'
,
$tag
);
...
...
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