Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
409 views
in Technique[技术] by (71.8m points)

.net - how to add invoice or sales receipt quickbooks rest api v3.0

How can I add an invoice or sales receipt using the QuickBooks API Rest v3? Preferably in .NET. I was interested previously in v2 but apparently that is going to be replaced soon. I can't seem to find any sample code in .NET to add a sales receipt or invoice for version 3. A simple example with minimum data supplied would be appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can try the following code snippet.

   public void AddInvoice()
   {
       OAuthRequestValidator reqValidator = new OAuthRequestValidator(accessToken, accessTokenSecret, consumerKey, consumerKeySecret);
       ServiceContext context = new ServiceContext(realmId, IntuitServicesType.QBO, reqValidator);

       Invoice added = Helper.Add<Invoice>(qboContextoAuth, CreateInvoice(qboContextoAuth));

   }

   internal Invoice CreateInvoice(ServiceContext context)
    {
        Customer customer = FindorAdd<Customer>(context, new Customer());
        TaxCode taxCode = FindorAdd<TaxCode>(context, new TaxCode());
        Account account = FindOrADDAccount(context, AccountTypeEnum.AccountsReceivable, AccountClassificationEnum.Liability);

        Invoice invoice = new Invoice();
        invoice.Deposit = new Decimal(0.00);
        invoice.DepositSpecified = true;
        invoice.AllowIPNPayment = false;
        invoice.AllowIPNPaymentSpecified = true;

        invoice.CustomerRef = new ReferenceType()
        {
            name = customer.DisplayName,
            Value = customer.Id
        };
        invoice.DueDate = DateTime.UtcNow.Date;
        invoice.DueDateSpecified = true;
        invoice.GlobalTaxCalculation = GlobalTaxCalculationEnum.TaxExcluded;
        invoice.GlobalTaxCalculationSpecified = true;
        invoice.TotalAmt = new Decimal(0.00);
        invoice.TotalAmtSpecified = true;
        invoice.ApplyTaxAfterDiscount = false;
        invoice.ApplyTaxAfterDiscountSpecified = true;

        invoice.PrintStatus = PrintStatusEnum.NotSet;
        invoice.PrintStatusSpecified = true;
        invoice.EmailStatus = EmailStatusEnum.NotSet;
        invoice.EmailStatusSpecified = true;
        invoice.ARAccountRef = new ReferenceType()
        {
            type = Enum.GetName(typeof(objectNameEnumType), objectNameEnumType.Account),
            name = "Account Receivable",
            Value = "QB:37"
        };
        invoice.Balance = new Decimal(0.00);
        invoice.BalanceSpecified = true;

        List<Line> lineList = new List<Line>();
        Line line = new Line();
        line.Description = "Description";
        line.Amount = new Decimal(100.00);
        line.AmountSpecified = true;

        line.DetailType = LineDetailTypeEnum.DescriptionOnly;
        line.DetailTypeSpecified = true;

        lineList.Add(line);
        invoice.Line = lineList.ToArray();
        TxnTaxDetail txnTaxDetail = new TxnTaxDetail();
        txnTaxDetail.DefaultTaxCodeRef = new ReferenceType()
        {
            Value = taxCode.Id,
            type = Enum.GetName(typeof(objectNameEnumType), objectNameEnumType.Customer),
            name = taxCode.Name
        };

        txnTaxDetail.TotalTax = new Decimal(0.00);
        txnTaxDetail.TotalTaxSpecified = true;


        return invoice;
    }

V3 Invoice Doc Ref - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v3/030_entity_services_reference/invoice Hope, it will be useful to you.

Thanks


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...