Skip to content

Commit

Permalink
VAT-Rounding: InvoiceIdent per Store
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Falk committed Feb 22, 2017
1 parent d46823b commit e08f7c6
Show file tree
Hide file tree
Showing 11 changed files with 1,030 additions and 973 deletions.
282 changes: 141 additions & 141 deletions src/Libraries/Nop.Core/Domain/Orders/OrderSettings.cs
@@ -1,142 +1,142 @@
using Nop.Core.Configuration;

namespace Nop.Core.Domain.Orders
{
public class OrderSettings : ISettings
{
/// <summary>
/// Gets or sets a value indicating whether customer can make re-order
/// </summary>
public bool IsReOrderAllowed { get; set; }

/// <summary>
/// Gets or sets a minimum order subtotal amount
/// </summary>
public decimal MinOrderSubtotalAmount { get; set; }
/// <summary>
/// Gets or sets a value indicating whether 'Minimum order subtotal amount' option
/// should be evaluated over 'X' value including tax or not
/// </summary>
public bool MinOrderSubtotalAmountIncludingTax { get; set; }
/// <summary>
/// Gets or sets a minimum order total amount
/// </summary>
public decimal MinOrderTotalAmount { get; set; }

/// <summary>
/// Gets or sets a value indicating whether automatically update order totals on editing an order in admin area
/// </summary>
public bool AutoUpdateOrderTotalsOnEditingOrder { get; set; }

/// <summary>
/// Gets or sets a value indicating whether anonymous checkout allowed
/// </summary>
public bool AnonymousCheckoutAllowed { get; set; }

/// <summary>
/// Gets or sets a value indicating whether 'Terms of service' enabled on the shopping cart page
/// </summary>
public bool TermsOfServiceOnShoppingCartPage { get; set; }
/// <summary>
/// Gets or sets a value indicating whether 'Terms of service' enabled on the order confirmation page
/// </summary>
public bool TermsOfServiceOnOrderConfirmPage { get; set; }

/// <summary>
/// Gets or sets a value indicating whether 'One-page checkout' is enabled
/// </summary>
public bool OnePageCheckoutEnabled { get; set; }

/// <summary>
/// Gets or sets a value indicating whether order totals should be displayed on 'Payment info' tab of 'One-page checkout' page
/// </summary>
public bool OnePageCheckoutDisplayOrderTotalsOnPaymentInfoTab { get; set; }
/// <summary>
/// Gets or sets a value indicating whether "Billing address" step should be skipped
/// </summary>
public bool DisableBillingAddressCheckoutStep { get; set; }
/// <summary>
/// Gets or sets a value indicating whether "Order completed" page should be skipped
/// </summary>
public bool DisableOrderCompletedPage { get; set; }

/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order placed" email
/// </summary>
public bool AttachPdfInvoiceToOrderPlacedEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order paid" email
/// </summary>
public bool AttachPdfInvoiceToOrderPaidEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order completed" email
/// </summary>
public bool AttachPdfInvoiceToOrderCompletedEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we PDF invoices should be generated in customer language. Otherwise, use the current one
/// </summary>
public bool GeneratePdfInvoiceInCustomerLanguage { get; set; }

/// <summary>
/// Gets or sets a value indicating whether "Return requests" are allowed
/// </summary>
public bool ReturnRequestsEnabled { get; set; }
/// <summary>
/// Gets or sets a value indicating whether customers are allowed to upload files
/// </summary>
public bool ReturnRequestsAllowFiles { get; set; }
/// <summary>
/// Gets or sets maximum file size for upload file (return request). Set 0 to allow any file size
/// </summary>
public int ReturnRequestsFileMaximumSize { get; set; }
/// <summary>
/// Gets or sets a value "Return requests" number mask
/// </summary>
public string ReturnRequestNumberMask { get; set; }
/// <summary>
/// Gets or sets a number of days that the Return Request Link will be available for customers after order placing.
/// </summary>
public int NumberOfDaysReturnRequestAvailable { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to activate related gift cards after completing the order
/// </summary>
public bool ActivateGiftCardsAfterCompletingOrder { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to deactivate related gift cards after cancelling the order
/// </summary>
public bool DeactivateGiftCardsAfterCancellingOrder { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to deactivate related gift cards after deleting the order
/// </summary>
public bool DeactivateGiftCardsAfterDeletingOrder { get; set; }

/// <summary>
/// Gets or sets an order placement interval in seconds (prevent 2 orders being placed within an X seconds time frame).
/// </summary>
public int MinimumOrderPlacementInterval { get; set; }

/// <summary>
/// Gets or sets a value indicating whether an order status should be set to "Complete" only when its shipping status is "Delivered". Otherwise, "Shipped" status will be enough.
/// </summary>
public bool CompleteOrderWhenDelivered { get; set; }
/// <summary>
/// Last issued Invoice Id
/// </summary>
public int InvoiceIdent { get; set; }
/// <summary>
/// Last issued Invoice Date
/// </summary>
public int InvoiceYear { get; set; }

/// <summary>
/// Gets or sets a custom order number mask
/// </summary>
public string CustomOrderNumberMask { get; set; }

/// <summary>
/// Gets or sets a value indicating whether the orders need to be exported with their products
/// </summary>
public bool ExportWithProducts { get; set; }
}
using Nop.Core.Configuration;

namespace Nop.Core.Domain.Orders
{
public class OrderSettings : ISettings
{
/// <summary>
/// Gets or sets a value indicating whether customer can make re-order
/// </summary>
public bool IsReOrderAllowed { get; set; }

/// <summary>
/// Gets or sets a minimum order subtotal amount
/// </summary>
public decimal MinOrderSubtotalAmount { get; set; }
/// <summary>
/// Gets or sets a value indicating whether 'Minimum order subtotal amount' option
/// should be evaluated over 'X' value including tax or not
/// </summary>
public bool MinOrderSubtotalAmountIncludingTax { get; set; }
/// <summary>
/// Gets or sets a minimum order total amount
/// </summary>
public decimal MinOrderTotalAmount { get; set; }

/// <summary>
/// Gets or sets a value indicating whether automatically update order totals on editing an order in admin area
/// </summary>
public bool AutoUpdateOrderTotalsOnEditingOrder { get; set; }

/// <summary>
/// Gets or sets a value indicating whether anonymous checkout allowed
/// </summary>
public bool AnonymousCheckoutAllowed { get; set; }

/// <summary>
/// Gets or sets a value indicating whether 'Terms of service' enabled on the shopping cart page
/// </summary>
public bool TermsOfServiceOnShoppingCartPage { get; set; }
/// <summary>
/// Gets or sets a value indicating whether 'Terms of service' enabled on the order confirmation page
/// </summary>
public bool TermsOfServiceOnOrderConfirmPage { get; set; }

/// <summary>
/// Gets or sets a value indicating whether 'One-page checkout' is enabled
/// </summary>
public bool OnePageCheckoutEnabled { get; set; }

/// <summary>
/// Gets or sets a value indicating whether order totals should be displayed on 'Payment info' tab of 'One-page checkout' page
/// </summary>
public bool OnePageCheckoutDisplayOrderTotalsOnPaymentInfoTab { get; set; }
/// <summary>
/// Gets or sets a value indicating whether "Billing address" step should be skipped
/// </summary>
public bool DisableBillingAddressCheckoutStep { get; set; }
/// <summary>
/// Gets or sets a value indicating whether "Order completed" page should be skipped
/// </summary>
public bool DisableOrderCompletedPage { get; set; }

/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order placed" email
/// </summary>
public bool AttachPdfInvoiceToOrderPlacedEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order paid" email
/// </summary>
public bool AttachPdfInvoiceToOrderPaidEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we should attach PDF invoice to "Order completed" email
/// </summary>
public bool AttachPdfInvoiceToOrderCompletedEmail { get; set; }
/// <summary>
/// Gets or sets a value indicating we PDF invoices should be generated in customer language. Otherwise, use the current one
/// </summary>
public bool GeneratePdfInvoiceInCustomerLanguage { get; set; }

/// <summary>
/// Gets or sets a value indicating whether "Return requests" are allowed
/// </summary>
public bool ReturnRequestsEnabled { get; set; }
/// <summary>
/// Gets or sets a value indicating whether customers are allowed to upload files
/// </summary>
public bool ReturnRequestsAllowFiles { get; set; }
/// <summary>
/// Gets or sets maximum file size for upload file (return request). Set 0 to allow any file size
/// </summary>
public int ReturnRequestsFileMaximumSize { get; set; }
/// <summary>
/// Gets or sets a value "Return requests" number mask
/// </summary>
public string ReturnRequestNumberMask { get; set; }
/// <summary>
/// Gets or sets a number of days that the Return Request Link will be available for customers after order placing.
/// </summary>
public int NumberOfDaysReturnRequestAvailable { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to activate related gift cards after completing the order
/// </summary>
public bool ActivateGiftCardsAfterCompletingOrder { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to deactivate related gift cards after cancelling the order
/// </summary>
public bool DeactivateGiftCardsAfterCancellingOrder { get; set; }
/// <summary>
/// Gets or sets a value indicating whether to deactivate related gift cards after deleting the order
/// </summary>
public bool DeactivateGiftCardsAfterDeletingOrder { get; set; }

/// <summary>
/// Gets or sets an order placement interval in seconds (prevent 2 orders being placed within an X seconds time frame).
/// </summary>
public int MinimumOrderPlacementInterval { get; set; }

/// <summary>
/// Gets or sets a value indicating whether an order status should be set to "Complete" only when its shipping status is "Delivered". Otherwise, "Shipped" status will be enough.
/// </summary>
public bool CompleteOrderWhenDelivered { get; set; }
/// <summary>
/// Last issued Invoice Id
/// </summary>
public int InvoiceIdent { get; set; }
/// <summary>
/// Last issued Invoice Year
/// </summary>
public int InvoiceYear { get; set; }

/// <summary>
/// Gets or sets a custom order number mask
/// </summary>
public string CustomOrderNumberMask { get; set; }

/// <summary>
/// Gets or sets a value indicating whether the orders need to be exported with their products
/// </summary>
public bool ExportWithProducts { get; set; }
}
}

0 comments on commit e08f7c6

Please sign in to comment.