Discounts

johnnyc313
Member Posts: 93
This may seem like a silly question.... But we have a customer who always gets a 50% discount on all invoices. How can I set this up in Navision?
0
Comments
-
Customer Card -> [Sales] -> [Invoice Discounts]
Currency Minimum Discount % Service Code Amount Charge 0,00 50 0,00
Timo Lässer
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]0 -
Hi,
Thanks for your reply, I tried doing what you suggested before I posted, but it is not showing when I put an invoice on. Is there some way I need to assign the code to the customer or something?0 -
In Sales Order Do
Functions --> Calculate Invoice Discount;
Then check the Statistics (F9);0 -
Mark Brummel wrote:In Sales Order Do
Functions --> Calculate Invoice Discount;
Then check the Statistics (F9);
Tried this too, no discount is shown. Also tried checkin Calculate Invoice Disc in S&R Setup.0 -
Oh yes, you have two options:
1. You have to calculate the invoice discount manually each time
2. Check the field "Calc. Inv. Discount" in the "Sales & Receivables Setup"
If you choose the 2nd option, Navision (re)calculates the Invoice Discount on:
- show sales statistic (F9)
- Release Document
- Post DocumentTimo Lässer
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]0 -
I have tried both options and still it's not working. I don't understand what I am doing wrong.0
-
There is a boolean field "Allow Invoice Disc." in the Sales Line. If this isn't ticked no invoice discounts are calculated. In an Type::Item line it is copied from the item ( default TRUE), but for G/L Account, Resource, Fixed Asset and Item Charge the default is FALSE.Kai Kowalewski0
-
@Kowa
The "Allow Line Disc" is of no influence on Invoice Discount, only on Line Disounts.
Greetz,
Marq0 -
Mark Brummel wrote:@Kowa
The "Allow Invoice Disc" is of no influence on Invoice Discount, only on Line Disounts.
Greetz,
Marq
I disagree . Take a look at CU 80
IF "Allow Invoice Disc." AND (TempVATAmountLine."Inv. Disc. Base Amount" <> 0) THEN
IF QtyType = QtyType::Invoicing THEN
"Inv. Discount Amount" := "Inv. Disc. Amount to Invoice"
ELSE BEGIN
TempVATAmountLineRemainder."Invoice Discount Amount" :=
TempVATAmountLineRemainder."Invoice Discount Amount" +
TempVATAmountLine."Invoice Discount Amount" * "Line Amount" /
TempVATAmountLine."Inv. Disc. Base Amount";
"Inv. Discount Amount" :=
ROUND(
TempVATAmountLineRemainder."Invoice Discount Amount",Currency."Amount Rounding Precision");
TempVATAmountLineRemainder."Invoice Discount Amount" :=
TempVATAmountLineRemainder."Invoice Discount Amount" - "Inv. Discount Amount";
END;
as well as the function "UpdateVATOnLines" in the Sales Line table
IF "Allow Invoice Disc." THEN BEGIN
IF VATAmountLine."Inv. Disc. Base Amount" = 0 THEN
InvDiscAmount := 0
ELSE BEGIN
TempVATAmountLineRemainder."Invoice Discount Amount" :=
TempVATAmountLineRemainder."Invoice Discount Amount" +
VATAmountLine."Invoice Discount Amount" * LineAmountToInvoice /
VATAmountLine."Inv. Disc. Base Amount";
InvDiscAmount :=
ROUND(
TempVATAmountLineRemainder."Invoice Discount Amount",Currency."Amount Rounding Precision");
TempVATAmountLineRemainder."Invoice Discount Amount" :=
TempVATAmountLineRemainder."Invoice Discount Amount" - InvDiscAmount;
END;
IF QtyType = QtyType::General THEN BEGIN
"Inv. Discount Amount" := InvDiscAmount;
CalcInvDiscToInvoice;
END ELSE
"Inv. Disc. Amount to Invoice" := InvDiscAmount;
END ELSE
InvDiscAmount := 0;
Even if line discounts are not allowed ( e.g because of very low prices), invoice discounts can still be possible and are handled separately.Kai Kowalewski0 -
OK, sorry, I thought you meant Sales Line Disc.
8)0 -
Just tried it myself:
on Sales&marketing - setup - sales and receivables: Check 'Calc. Inv.Disc.' and 'Calc. inv. Disc. per VAT'
on 'Customer Card' - 'Sales' - Invoice Discounts':
Code Currency Minimum Amount Discount % Service Charge
30000 0.00 50 0.00
where 30000 is the customer number
With this setup, Discount is calculated nicely and automatically.
dm0 -
-
We use Invoice Discounts too - works fine.0
-
hi,
there's a scenari that's driving me crazy. for one particular customer, on processing s quote, s order or s invoice, on pressing F9, the inv disc field is disabled, which prevents me from entering disc
thanks for ur help0 -
Do you mean only the Discount field or the whole form?
If you open the Sales Statistics form and look in the OnOpenForm trigger you will see that it gets non-editable when it is not properly setup.0 -
Greetings,
This is an awesome post by the way - great information.
I've been working on keeping the "Allow Invoice Disc." value as false on the Sales Order Subform when a new item is added. No matter what I do, what I try, it keeps popping back up as true. I need the initial value to be false.
I must be missing something obvious..any ideas? I'm pretty new to this so if what I'm proposing goes against the NAV grain I apologize!
Any help is appreciated. Thanks.0 -
The initial "Allow Invoice Disc." in the sales line is just copied from the Item's "Allow Invoice Disc." field when the item no. is entered.
CASE Type OF ... Type::Item: BEGIN GetItem; ... "Allow Invoice Disc." := Item."Allow Invoice Disc.";
Kai Kowalewski0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions