mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 21:06:02 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
462 lines
13 KiB
C#
462 lines
13 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web.Script.Serialization;
|
|
|
|
namespace Retailcrm.Versions.V3
|
|
{
|
|
public partial class Client
|
|
{
|
|
/// <summary>
|
|
/// Countries
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response Countries()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/countries",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delivery services
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response DeliveryServices()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/delivery-services",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delivery types
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response DeliveryTypes()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/delivery-types",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Order methods
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response OrderMethods()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/order-methods",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Order types
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response OrderTypes()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/order-types",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Payment statuses
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response PaymentStatuses()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/payment-statuses",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Payment types
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response PaymentTypes()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/payment-types",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Product statuses
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response ProductStatuses()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/product-statuses",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sites
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response Sites()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/sites",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Statuses groups
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response StatusGroups()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/status-groups",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Statuses
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response Statuses()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/statuses",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Response Stores()
|
|
{
|
|
return Request.MakeRequest(
|
|
"/reference/stores",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delivery services edit
|
|
/// </summary>
|
|
/// <param name="service"></param>
|
|
/// <returns></returns>
|
|
public Response DeliveryServicesEdit(Dictionary<string, object> service)
|
|
{
|
|
if (!service.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!service.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/delivery-services/{service["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "deliveryService", new JavaScriptSerializer().Serialize(service) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delivery types edit
|
|
/// </summary>
|
|
/// <param name="type"></param>
|
|
/// <returns></returns>
|
|
public Response DeliveryTypesEdit(Dictionary<string, object> type)
|
|
{
|
|
if (!type.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!type.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
if (!type.ContainsKey("defaultCost"))
|
|
{
|
|
throw new ArgumentException("Parameter `defaultCost` is missing");
|
|
}
|
|
|
|
if (!type.ContainsKey("defaultNetCost"))
|
|
{
|
|
throw new ArgumentException("Parameter `defaultCost` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/delivery-types/{type["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "deliveryType", new JavaScriptSerializer().Serialize(type) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Orders methods edit
|
|
/// </summary>
|
|
/// <param name="method"></param>
|
|
/// <returns></returns>
|
|
public Response OrderMethodsEdit(Dictionary<string, object> method)
|
|
{
|
|
if (!method.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!method.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/order-methods/{method["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "orderMethod", new JavaScriptSerializer().Serialize(method) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Order types edit
|
|
/// </summary>
|
|
/// <param name="type"></param>
|
|
/// <returns></returns>
|
|
public Response OrderTypesEdit(Dictionary<string, object> type)
|
|
{
|
|
if (!type.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!type.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/order-types/{type["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "orderType", new JavaScriptSerializer().Serialize(type) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Payment statuses edit
|
|
/// </summary>
|
|
/// <param name="status"></param>
|
|
/// <returns></returns>
|
|
public Response PaymentStatusesEdit(Dictionary<string, object> status)
|
|
{
|
|
if (!status.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!status.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/payment-statuses/{status["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "paymentStatus", new JavaScriptSerializer().Serialize(status) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Payment types edit
|
|
/// </summary>
|
|
/// <param name="type"></param>
|
|
/// <returns></returns>
|
|
public Response PaymentTypesEdit(Dictionary<string, object> type)
|
|
{
|
|
if (!type.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!type.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/payment-types/{type["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "paymentType", new JavaScriptSerializer().Serialize(type) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Product statuses edit
|
|
/// </summary>
|
|
/// <param name="status"></param>
|
|
/// <returns></returns>
|
|
public Response ProductStatusesEdit(Dictionary<string, object> status)
|
|
{
|
|
if (!status.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!status.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/product-statuses/{status["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "productStatus", new JavaScriptSerializer().Serialize(status) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sites edit
|
|
/// </summary>
|
|
/// <param name="site"></param>
|
|
/// <returns></returns>
|
|
public Response SitesEdit(Dictionary<string, object> site)
|
|
{
|
|
if (!site.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!site.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
if (!site.ContainsKey("url"))
|
|
{
|
|
throw new ArgumentException("Parameter `url` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/sites/{site["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "site", new JavaScriptSerializer().Serialize(site) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Statuses edit
|
|
/// </summary>
|
|
/// <param name="status"></param>
|
|
/// <returns></returns>
|
|
public Response StatusesEdit(Dictionary<string, object> status)
|
|
{
|
|
if (!status.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!status.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
if (!status.ContainsKey("ordering"))
|
|
{
|
|
throw new ArgumentException("Parameter `ordering` is missing");
|
|
}
|
|
|
|
if (!status.ContainsKey("group"))
|
|
{
|
|
throw new ArgumentException("Parameter `group` is missing");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/statuses/{status["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "status", new JavaScriptSerializer().Serialize(status) }
|
|
}
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores edit
|
|
/// </summary>
|
|
/// <param name="store"></param>
|
|
/// <returns></returns>
|
|
public Response StoresEdit(Dictionary<string, object> store)
|
|
{
|
|
if (!store.ContainsKey("code"))
|
|
{
|
|
throw new ArgumentException("Parameter `code` is missing");
|
|
}
|
|
|
|
if (!store.ContainsKey("name"))
|
|
{
|
|
throw new ArgumentException("Parameter `name` is missing");
|
|
}
|
|
|
|
List<string> types = new List<string>
|
|
{
|
|
"store-type-online",
|
|
"store-type-retail",
|
|
"store-type-supplier",
|
|
"store-type-warehouse"
|
|
};
|
|
|
|
if (store.ContainsKey("type") && !types.Contains(store["type"].ToString()))
|
|
{
|
|
throw new ArgumentException("Parameter `type` should be equal to one of `store-type-online|store-type-retail|store-type-supplier|store-type-warehouse`");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/reference/stores/{store["code"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "store", new JavaScriptSerializer().Serialize(store) }
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|