Skip to main content

Notifications

Announcements

No record found.

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,508

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

  • Suggested answer
    Vipin J Profile Picture
    1,603 on at
    RE: create new invoice from the code

    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

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Adis Hodzic – Community Spotlight

We are honored to recognize Adis Hodzic as our May 2025 Community…

Kudos to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Microsoft Dynamics CRM (Archived)

#1
Mohamed Amine Mahmoudi Profile Picture

Mohamed Amine Mahmoudi 83 Super User 2025 Season 1

#2
Community Member Profile Picture

Community Member 52

#3
dkrishna Profile Picture

dkrishna 6

Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans