您能否帮我处理 crm 2011 我需要从我们的另一个系统导入发票。(很简单)
private void CreateInvoice(Invoice _invoice)
{
IOrganizationService _service = GetCRMService();
Entity entity = new Entity("invoice");
entity[e_Invoice.InvoiceNumber] = _invoice.Id.ToString();
entity[e_Invoice.CustomerId] = new EntityReference("account", new Guid("6209A6AD-43B6-E211-A99D-005056A51C55"));
_service.Create(entity);
}
我是PreRetriveInvoice上的呼叫事件。
所以在第二次调用时,方法创建另一个项目(如INV-01157-F4C5F5)
对我来说这是不可接受的。
如何查看发票号码?如果我在系统中有这个号码,我会跳过记录。