![]() |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Custom Field Forms. More...
Public Member Functions | |
| EntityView | GetEntityView () |
| Creates meta information of "custom field form" entity. More... | |
| long | Count () |
| Counts the number of custom field forms. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | Get () |
| Returns collection of custom field form for export. More... | |
| MixERP.Net.Entities.Core.CustomFieldForm | Get (string formName) |
| Returns an instance of custom field form. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | Get ([FromUri] string[] formNames) |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | GetPagedResult () |
| Creates a paginated collection containing 25 custom field forms on each page, sorted by the property FormName. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | GetPagedResult (long pageNumber) |
| Creates a paginated collection containing 25 custom field forms on each page, sorted by the property FormName. More... | |
| long | CountWhere ([FromBody]dynamic filters) |
| Counts the number of custom field forms using the supplied filter(s). More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | GetWhere (long pageNumber, [FromBody]dynamic filters) |
| Creates a filtered and paginated collection containing 25 custom field forms on each page, sorted by the property FormName. More... | |
| long | CountFiltered (string filterName) |
| Counts the number of custom field forms using the supplied filter name. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldForm > | GetFiltered (long pageNumber, string filterName) |
| Creates a filtered and paginated collection containing 25 custom field forms on each page, sorted by the property FormName. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfield is a lightweight key/value collection of custom field forms. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields () |
| A custom field is a user defined field for custom field forms. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| A custom field is a user defined field for custom field forms. More... | |
| void | AddOrEdit ([FromBody]Newtonsoft.Json.Linq.JArray form) |
| Adds or edits your instance of CustomFieldForm class. More... | |
| void | Add (MixERP.Net.Entities.Core.CustomFieldForm customFieldForm) |
| Adds your instance of CustomFieldForm class. More... | |
| void | Edit (string formName, [FromBody] MixERP.Net.Entities.Core.CustomFieldForm customFieldForm) |
| Edits existing record with your instance of CustomFieldForm class. More... | |
| List< object > | BulkImport ([FromBody]dynamic collection) |
| Adds or edits multiple instances of CustomFieldForm class. More... | |
| void | Delete (string formName) |
| Deletes an existing instance of CustomFieldForm class via FormName. More... | |
Properties | |
| long | LoginId [get] |
| int | UserId [get] |
| int | OfficeId [get] |
| string | Catalog [get] |
Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Custom Field Forms.
| void MixERP.Net.Api.Core.CustomFieldFormController.Add | ( | MixERP.Net.Entities.Core.CustomFieldForm | customFieldForm | ) |
Adds your instance of CustomFieldForm class.
| customFieldForm | Your instance of custom field forms class to add. |
| void MixERP.Net.Api.Core.CustomFieldFormController.AddOrEdit | ( | [FromBody] Newtonsoft.Json.Linq.JArray | form | ) |
Adds or edits your instance of CustomFieldForm class.
| customFieldForm | Your instance of custom field forms class to add or edit. |
| List<object> MixERP.Net.Api.Core.CustomFieldFormController.BulkImport | ( | [FromBody] dynamic | collection | ) |
Adds or edits multiple instances of CustomFieldForm class.
| collection | Your collection of CustomFieldForm class to bulk import. |
| MixERPException | Thrown when your any CustomFieldForm class in the collection is invalid or malformed. |
| long MixERP.Net.Api.Core.CustomFieldFormController.Count | ( | ) |
Counts the number of custom field forms.
| long MixERP.Net.Api.Core.CustomFieldFormController.CountFiltered | ( | string | filterName | ) |
Counts the number of custom field forms using the supplied filter name.
| filterName | The named filter. |
| long MixERP.Net.Api.Core.CustomFieldFormController.CountWhere | ( | [FromBody] dynamic | filters | ) |
Counts the number of custom field forms using the supplied filter(s).
| filters | The list of filter conditions. |
| void MixERP.Net.Api.Core.CustomFieldFormController.Delete | ( | string | formName | ) |
Deletes an existing instance of CustomFieldForm class via FormName.
| formName | Enter the value for FormName in order to find and delete the existing record. |
| void MixERP.Net.Api.Core.CustomFieldFormController.Edit | ( | string | formName, |
| [FromBody] MixERP.Net.Entities.Core.CustomFieldForm | customFieldForm | ||
| ) |
Edits existing record with your instance of CustomFieldForm class.
| customFieldForm | Your instance of CustomFieldForm class to edit. |
| formName | Enter the value for FormName in order to find and edit the existing record. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldForm> MixERP.Net.Api.Core.CustomFieldFormController.Get | ( | ) |
Returns collection of custom field form for export.
| MixERP.Net.Entities.Core.CustomFieldForm MixERP.Net.Api.Core.CustomFieldFormController.Get | ( | string | formName | ) |
Returns an instance of custom field form.
| formName | Enter FormName to search for. |
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.CustomFieldFormController.GetCustomFields | ( | ) |
A custom field is a user defined field for custom field forms.
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Api.Core.CustomFieldFormController.GetCustomFields | ( | string | resourceId | ) |
A custom field is a user defined field for custom field forms.
| IEnumerable<DisplayField> MixERP.Net.Api.Core.CustomFieldFormController.GetDisplayFields | ( | ) |
Displayfield is a lightweight key/value collection of custom field forms.
| EntityView MixERP.Net.Api.Core.CustomFieldFormController.GetEntityView | ( | ) |
Creates meta information of "custom field form" entity.
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldForm> MixERP.Net.Api.Core.CustomFieldFormController.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Creates a filtered and paginated collection containing 25 custom field forms on each page, sorted by the property FormName.
| pageNumber | Enter the page number to produce the resultset. |
| filterName | The named filter. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldForm> MixERP.Net.Api.Core.CustomFieldFormController.GetPagedResult | ( | ) |
Creates a paginated collection containing 25 custom field forms on each page, sorted by the property FormName.
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldForm> MixERP.Net.Api.Core.CustomFieldFormController.GetPagedResult | ( | long | pageNumber | ) |
Creates a paginated collection containing 25 custom field forms on each page, sorted by the property FormName.
| pageNumber | Enter the page number to produce the resultset. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldForm> MixERP.Net.Api.Core.CustomFieldFormController.GetWhere | ( | long | pageNumber, |
| [FromBody] dynamic | filters | ||
| ) |
Creates a filtered and paginated collection containing 25 custom field forms on each page, sorted by the property FormName.
| pageNumber | Enter the page number to produce the resultset. |
| filters | The list of filter conditions. |