changeset 95953e542382 in modules/purchase:default
details: https://hg.tryton.org/modules/purchase?cmd=changeset;node=95953e542382
description:
Rename PurchaseRecreatedInvoice class
issue7994
review255481005
diffstat:
__init__.py | 2 +-
purchase.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diffs (33 lines):
diff -r a4a990313572 -r 95953e542382 __init__.py
--- a/__init__.py Fri Aug 09 16:37:46 2019 +0200
+++ b/__init__.py Tue Aug 20 09:30:24 2019 +0200
@@ -15,7 +15,7 @@
Move,
Purchase,
PurchaseIgnoredInvoice,
- PurchaseRecreadtedInvoice,
+ PurchaseRecreatedInvoice,
PurchaseLine,
PurchaseLineTax,
PurchaseLineIgnoredMove,
diff -r a4a990313572 -r 95953e542382 purchase.py
--- a/purchase.py Fri Aug 09 16:37:46 2019 +0200
+++ b/purchase.py Tue Aug 20 09:30:24 2019 +0200
@@ -27,7 +27,7 @@
from .exceptions import PurchaseQuotationError, PartyLocationError
__all__ = ['Purchase', 'PurchaseIgnoredInvoice',
- 'PurchaseRecreadtedInvoice', 'PurchaseLine', 'PurchaseLineTax',
+ 'PurchaseRecreatedInvoice', 'PurchaseLine', 'PurchaseLineTax',
'PurchaseLineIgnoredMove', 'PurchaseLineRecreatedMove', 'PurchaseReport',
'OpenSupplier', 'HandleShipmentExceptionAsk', 'HandleShipmentException',
'HandleInvoiceExceptionAsk', 'HandleInvoiceException', 'ModifyHeader',
@@ -897,7 +897,7 @@
ondelete='RESTRICT', select=True, required=True)
-class PurchaseRecreadtedInvoice(ModelSQL):
+class PurchaseRecreatedInvoice(ModelSQL):
'Purchase - Recreated Invoice'
__name__ = 'purchase.purchase-recreated-account.invoice'
_table = 'purchase_invoice_recreated_rel'