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);
}
私はPreRetribInvoice の呼び出しイベントです。
したがって、2回目の呼び出しで、メソッドは別のアイテムを作成します(INV-01157-F4C5F5 など)
私にとって、これは受け入れがたいことです。
請求書番号の確認方法を教えてください。システムにこの番号がある場合、レコードをスキップします。