Merge Invoice and Bill into Document
This commit is contained in:
13
modules/BC21/Events/Sale/InvoiceCancelled.php
Normal file
13
modules/BC21/Events/Sale/InvoiceCancelled.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentCancelled;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentCancelled
|
||||
*/
|
||||
class InvoiceCancelled extends DocumentCancelled
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceCreated.php
Normal file
13
modules/BC21/Events/Sale/InvoiceCreated.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentCreated;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentCreated
|
||||
*/
|
||||
class InvoiceCreated extends DocumentCreated
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceCreating.php
Normal file
13
modules/BC21/Events/Sale/InvoiceCreating.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentCreating;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentCreating
|
||||
*/
|
||||
class InvoiceCreating extends DocumentCreating
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoicePrinting.php
Normal file
13
modules/BC21/Events/Sale/InvoicePrinting.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentPrinting;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentPrinting
|
||||
*/
|
||||
class InvoicePrinting extends DocumentPrinting
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceRecurring.php
Normal file
13
modules/BC21/Events/Sale/InvoiceRecurring.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentRecurring;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentRecurring
|
||||
*/
|
||||
class InvoiceRecurring extends DocumentRecurring
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceReminded.php
Normal file
13
modules/BC21/Events/Sale/InvoiceReminded.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentReminded;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentReminded
|
||||
*/
|
||||
class InvoiceReminded extends DocumentReminded
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceSent.php
Normal file
13
modules/BC21/Events/Sale/InvoiceSent.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentSent;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentSent
|
||||
*/
|
||||
class InvoiceSent extends DocumentSent
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceUpdated.php
Normal file
13
modules/BC21/Events/Sale/InvoiceUpdated.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentUpdated;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentUpdated
|
||||
*/
|
||||
class InvoiceUpdated extends DocumentUpdated
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceUpdating.php
Normal file
13
modules/BC21/Events/Sale/InvoiceUpdating.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentUpdating;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentUpdating
|
||||
*/
|
||||
class InvoiceUpdating extends DocumentUpdating
|
||||
{
|
||||
}
|
||||
13
modules/BC21/Events/Sale/InvoiceViewed.php
Normal file
13
modules/BC21/Events/Sale/InvoiceViewed.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
use App\Events\Document\DocumentViewed;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @see DocumentViewed
|
||||
*/
|
||||
class InvoiceViewed extends DocumentViewed
|
||||
{
|
||||
}
|
||||
7
modules/BC21/Events/Sale/PaymentReceived.php
Normal file
7
modules/BC21/Events/Sale/PaymentReceived.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Sale;
|
||||
|
||||
class PaymentReceived extends \App\Events\Document\PaymentReceived
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user