Como criar entidades no Eye Peak via WebService?
Este documento descreve os passos necessários para criar o seu primeiro artigo no Eye Peak via WebServices. A arquitetura do Eye Peak permite que sejam integrados dados de sistemas externos tais como ERPs, sendo que os tipos de dados que poderão ser integrados são: artigos, entidades, documentos, armazéns, unidades e famílias. A integração de sistemas externos é realizada através de Web Services, conforme já explicado no artigo “Como criar um projeto de integração com o Eye Peak via WebServices?”. Criar uma chamada ao método “Add”. Criar uma chamada ao método “Change”. Criar uma chamada ao método “Remove”.Pré-Requisitos
Passo 1 – Criar uma classe “Entity” para proceder ao tratamento dos métodos dos entidades
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Sync.WMS.WMSDataImportWS;
namespace Sync.WMS
{
public class Entity
{
private WMSDataImportClient m_WSClient;
public Entity()
{
m_WSClient = Utils.WS_CLIENT();
}
public void Add()
{
// Web Service of the Entity to be used
Sync.WMS.WMSDataImportWS.EntityRequest wsEntity = new EntityRequest();
//Required Fields
wsEntity.ERPCompany = "DEMOWMS10";
wsEntity.Name = "Entity para teste de integração3";
wsEntity.EntityCode = "T5";
//Saving
object result;
result = m_WSClient.SaveEntity(wsEntity);
}
public void Change()
{
// Web Service of the Entity to be used
Sync.WMS.WMSDataImportWS.EntityRequest wsEntity = new EntityRequest();
//Required Fields
wsEntity.ERPCompany = "DEMOWMS10";
wsEntity.Name = "Entidade para teste de integração3";
wsEntity.EntityCode = "T5";
wsEntity.OldEntityCode = "T5";
//Saving
object result;
result = m_WSClient.SaveEntity(wsEntity);
}
public void Remove()
{
// Web Service of the Entity to be used
Sync.WMS.WMSDataImportWS.EntityRequest wsEntity = new EntityRequest();
//Required Fields
wsEntity.ERPCompany = "DEMOWMS10";
wsEntity.EntityCode = "T5";
//Saving
object result;
result = m_WSClient.DeleteEntity(wsEntity);
}
}
}
Passo 2 – Criar a chamada ao método de criação da Entidade
private void btnAddEntity_Click(object sender, EventArgs e)
{
Sync.WMS.Entity Entity = new Sync.WMS.Entity();
Entity.Add();
}
Passo 3 – Criar a chamada ao método de alteração da Entidade
private void btnChangeEntity_Click(object sender, EventArgs e)
{
Sync.WMS.Entity Entity = new Sync.WMS.Entity();
Entity.Change();
}
Passo 4– Criar a chamada ao método de remoção da Entidade
private void btnRemoveEntity_Click(object sender, EventArgs e)
{
Sync.WMS.Entity Entity = new Sync.WMS.Entity();
Entity.Remove();
}
login para deixar a sua opinião.