web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics CRM (Archived)

create new invoice from the code

(0) ShareShare
ReportReport
Posted on by 2,512

Hi, I am trying to create a new invoice from the existing invoice and add the products from the existing invoice as well. The issue is it is duplicating products, I highlighted the products that I need. Please help

78052.workflow.png

// getting old invoice details

var oldInvoiceDetails = from o in svcContext.InvoiceDetailSet where o.InvoiceId.Id == entityRef.Id select o;

// add everyting from old invoice details to new invoice detail

foreach (var oldinv in oldInvoiceDetails)

{ InvoiceDetail invdetail = new InvoiceDetail();

invdetail.InvoiceId = new EntityReference(Invoice.EntityLogicalName, invoiceId);

invdetail.ParentBundleId = oldinv.ParentBundleId ?? null;

invdetail.ProductId = oldinv.ProductId; invdetail.UoMId = oldinv.UoMId;

invdetail.Quantity = oldinv.Quantity;

invdetail.ExtendedAmount = oldinv.ExtendedAmount;

service.Create(invdetail);

}

*This post is locked for comments

I have the same question (0)
  • Suggested answer
    Vipin J Profile Picture
    1,603 on at

    Refer here for a code to create a duplicate plugin, It does copy all products, invoice form fields and takes care of all calculation

    [View:https://vjcity.blogspot.com/2019/08/how-to-create-duplicate-copy-of-invoice.html:750:50]

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics CRM (Archived)

#1
ScottDurow Profile Picture

ScottDurow 2

#2
GJones Profile Picture

GJones 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans