• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

"quotedocumentorderbyfields" MDO List

Some tooltip text!
• 1 minute to read
 • 1 minute to read

Possible choices for fields you can ORDER BY, within a group (or without grouping)

Candidate fields have to be in the QuoteLine table. The double-buffering system in the document production provider means you can sort on any field at all.

Implemented by the QuoteDocumentOrderByFields class. The name of the MDO list is 'quotedocumentorderbyfields'.

Sample Request

GET /api/v1/MDOList/quotedocumentorderbyfields
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: *

Sample Code

var listProvider = SuperOffice.CRM.Lists.SoListProviderFactory.Create("quotedocumentorderbyfields", forceFlatList: true);
foreach (var item in listProvider.RootItems) {
    Console.WriteLine("{0} {1} {2} {3}", 
         item.Id, ResourceManager.ParseInlineResources(item.Name), item.StyleHint, item.ExtraInfo);
}

Sample Output

Id Name StyleHint ExtraInfo
1 Rank rank
2 Code code
3 Name name
4 Product category productCategoryKey
5 Product family productFamilyKey
6 Product type productTypeKey
7 Subscription isSubscription
8 VAT info vatInfo

Related MDO Lists

  • "quotedocumentorderbyfieldsheadings"
  • "quotedocumentorderbyfieldsheadingswithallitem"
  • "quotedocumentorderbyfieldsheadingswithallitemwithnoselection"
  • "quotedocumentorderbyfieldsheadingswithnoselection"
  • "quotedocumentorderbyfieldswithallitem"
  • "quotedocumentorderbyfieldswithallitemwithnoselection"
  • "quotedocumentorderbyfieldswithnoselection"
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top