Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

QuoteStatus.cs

namespace Nop.Plugin.Misc.RFQ.Domains;

/// 
/// Represents an quote status
/// 
public enum QuoteStatus
{
    /// 
    /// Created from customer request a quote
    /// 
    CreatedFromRequestQuote = 1,
    /// 
    /// Created manually by store owner
    /// 
    CreatedManuallyByStoreOwner,
    /// 
    /// Sent to customer
    /// 
    Submitted,
    /// 
    /// Order is created
    /// 
    OrderCreated,
    /// 
    /// Expired
    /// 
    Expired
}