Bỏ qua để tới nội dung chính
Đăng nhập với Microsoft
Đăng nhập hoặc tạo một tài khoản.
Xin chào,
Chọn một tài khoản khác.
Bạn có nhiều tài khoản
Chọn tài khoản bạn muốn đăng nhập.

Bài viết này áp dụng cho Microsoft Dynamics NAV cho ngôn ngữ tiếng Bồ Đào Nha (ỏ).

Triệu chứng

Giả sử rằng bạn đặt giá trị Thanh toán giảm loạiCalc. Pmt đĩa. Trên dòng trong hộp thoại Thiết lập sổ cái chung trong phiên bản tiếng Bồ Đào Nha của Microsoft Dynamics NAV 2009. Bạn đặt một đơn giảm một hóa đơn mua hàng có nhiều hơn một phù hợp với thập phân. Khi bạn tính thống kê đơn mua hàng, hoá đơn giảm lượng được tính không đúng.

Sự cố này xảy ra trong các sản phẩm sau:

  • Phiên bản Microsoft Dynamics NAV 2009 R2 Bồ Đào Nha

  • Phiên bản tiếng Bồ Đào Nha của Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)


Giải pháp

Thông tin về cập nhật nóng

Microsoft hiện đã cung cấp bản cập nhật nóng được hỗ trợ. Tuy nhiên, nó chỉ được dùng để khắc phục sự cố được mô tả trong bài viết này. Áp dụng cho các hệ thống đang gặp sự cố cụ thể này. Hotfix này có thể được kiểm tra thêm. Vì vậy, nếu bạn không bị ảnh hưởng bởi sự cố này, chúng tôi khuyến nghị bạn đợi cho gói dịch vụ tiếp theo của Microsoft Dynamics NAV 2009 hoặc phiên bản Microsoft Dynamics NAV tiếp theo có chứa hotfix này.

Lưu ý Trong trường hợp đặc biệt, chi phí thường phát sinh để hỗ trợ cuộc gọi có thể được hủy bỏ nếu chuyên viên hỗ trợ kỹ thuật cho Microsoft Dynamics và sản phẩm liên quan xác định rằng một Cập Nhật cụ thể sẽ giải quyết vấn đề của bạn. Chi phí hỗ trợ thông thường sẽ áp dụng cho các vấn đề không phù hợp với bản Cập Nhật cụ thể trong câu hỏi và câu hỏi hỗ trợ bổ sung.

Thông tin cài đặt

Microsoft cung cấp mô hình lập trình để minh hoạ, không bảo hành hoặc rõ ràng hay ngụ ý. Điều này bao gồm, nhưng không giới hạn ở các bảo đảm cho một mục đích cụ thể hoặc sự. Bài viết này giả định rằng bạn đã quen với ngôn ngữ lập trình đang được giải thích và các công cụ được sử dụng để tạo và quy trình gỡ lỗi. Các kỹ sư hỗ trợ Microsoft có thể giúp giải thích các chức năng của một quy trình cụ thể. Tuy nhiên, họ sẽ không sửa đổi các ví dụ để cung cấp thêm chức năng hoặc xây dựng quy trình nhằm đáp ứng các yêu cầu cụ thể của bạn.

Lưu ý Trước khi cài đặt hotfix này, xác minh rằng tất cả người dùng máy khách Microsoft Dynamics NAV đã đăng xuất hệ thống. Điều này bao gồm dịch vụ Microsoft Dynamics NAV ứng dụng máy chủ (NAS). Bạn nên khách hàng chỉ người được đăng nhập khi bạn áp dụng hotfix này.

Để áp dụng hotfix này, bạn phải có giấy phép nhà phát triển.

Chúng tôi khuyên bạn nên tài khoản người dùng trong cửa sổ thông tin đăng nhập Windows hoặc trong cửa sổ thông tin đăng nhập cơ sở dữ liệu được gán vai trò "Siêu" của bạn. Nếu tài khoản người dùng không thể gán vai trò "SUPER" ID, bạn phải xác minh rằng tài khoản người dùng có các quyền sau đây:

  • Thay đổi quyền cho các đối tượng mà bạn sẽ thay đổi.

  • Quyền thực thi các đối tượng hệ thống đối tượng ID 5210 và hệ thống đối tượng ID 9015

    đối tượng.

Lưu ý Bạn không cần phải có quyền để lưu trữ dữ liệu nếu bạn phải tiến hành sửa chữa dữ liệu.

Thay đổi mã

Lưu ý Luôn kiểm tra mã khắc phục trong một môi trường được kiểm soát trước khi bạn áp dụng bản vá để sản xuất máy tính của bạn.

Để khắc phục sự cố này, hãy làm theo các bước sau:

  1. Thay đổi mã trong hàm CalculateInvoiceDiscount Calc. bán hàng giảm Codeunit (60) như sau:
    Hiện có mã 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Thay thế mã 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempSalesLineRemainder@1110000 : Record 37;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110003 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Hiện có mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    SalesLine2."Inv. Discount Amount" :=
    ROUND(SalesLine2."Line Amount" * CustInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    SalesLine2."Inv. Discount Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100,0.01);
    END;
    // End of the deleted lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Thay thế mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempSalesLineRemainder."Inv. Discount Amount" +=
    SalesLine2."Line Amount" * CustInvDisc."Discount %" / 100;
    SalesLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Inv. Discount Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100;
    SalesLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    END;
    // End of the added lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Mã hiện 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount")
    * SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" - SalesLine2."Inv. Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" - SalesLine2."Inv. Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Thay thế mã 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" - SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" - SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  2. Tạo một chức năng trong Calc. bán hàng giảm Codeunit (60) như sau:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;
  3. Thay đổi mã trong hàm CalculateInvoiceDiscount Purch.-Calc.Discount Codeunit (70) như sau:
    Hiện có mã 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Thay thế mã 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempPurchLineRemainder@1110000 : Record 39;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110004 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Hiện có mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    PurchLine2."Inv. Discount Amount" :=
    ROUND(PurchLine2."Line Amount" * VendInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    PurchLine2."Inv. Discount Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    VendInvDisc."Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Thay thế mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempPurchLineRemainder."Inv. Discount Amount" +=
    PurchLine2."Line Amount" * VendInvDisc."Discount %" / 100;
    PurchLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Inv. Discount Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    VendInvDisc."Discount %" / 100;
    PurchLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...

    Mã hiện 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" - PurchLine2."Inv. Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" - PurchLine2."Inv. Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Thay thế mã 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" - PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" - PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  4. Tạo một chức năng Purch.-Calc.Discount Codeunit (70) như sau:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;
  5. Thay đổi mã trong hàm CalculateInvoiceDiscount dịch vụ Calc. giảm Codeunit (5950) như sau:
    Hiện có mã 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Thay thế mã 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempServLineRemainder@1110000 : Record 5902;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110003 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Hiện có mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    ServiceLine2."Inv. Discount Amount" :=
    ROUND(ServiceLine2."Line Amount" * CustInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    ServiceLine2."Inv. Discount Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100,0.01);
    END;
    // End of the deleted lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Thay thế mã 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempServLineRemainder."Inv. Discount Amount" +=
    ServiceLine2."Line Amount" * CustInvDisc."Discount %" / 100;
    ServiceLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Inv. Discount Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100;
    ServiceLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    END;
    // End of the added lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Mã hiện 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount")
    * ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" - ServiceLine2."Inv. Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" - ServiceLine2."Inv. Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;

    Thay thế mã 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" - ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" - ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  6. Tạo một chức năng trong dịch vụ Calc. giảm Codeunit (5950) như sau:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;


Điều kiện tiên quyết

Bạn phải có một trong các sản phẩm được cài đặt để áp dụng hotfix này:

  • Phiên bản Microsoft Dynamics NAV 2009 R2 Bồ Đào Nha

  • Phiên bản tiếng Bồ Đào Nha của Microsoft Dynamics NAV 2009 Service Pack 1

Thông tin về việc loại bỏ

Bạn không thể xoá hotfix này.

Trạng thái

Microsoft đã xác nhận rằng đây là sự cố trong sản phẩm của Microsoft được liệt kê trong phần "Áp dụng cho".

Lưu ý Đây là một bài viết "XUẤT BẢN NHANH" được tạo trực tiếp từ trung tâm hỗ trợ của Microsoft. Thông tin này được cung cấp-trả lời cho các vấn đề mới xuất hiện. Vì nhanh chóng có sẵn, các tài liệu có thể bao gồm lỗi và có thể được sửa đổi bất kỳ lúc nào mà không cần thông báo. Xem Điều khoản sử dụngđể xem xét khác.

Bạn cần thêm trợ giúp?

Bạn muốn xem các tùy chọn khác?

Khám phá các lợi ích của gói đăng ký, xem qua các khóa đào tạo, tìm hiểu cách bảo mật thiết bị của bạn và hơn thế nữa.

Cộng đồng giúp bạn đặt và trả lời các câu hỏi, cung cấp phản hồi và lắng nghe ý kiến từ các chuyên gia có kiến thức phong phú.

Thông tin này có hữu ích không?

Bạn hài lòng đến đâu với chất lượng dịch thuật?
Điều gì ảnh hưởng đến trải nghiệm của bạn?
Khi nhấn gửi, phản hồi của bạn sẽ được sử dụng để cải thiện các sản phẩm và dịch vụ của Microsoft. Người quản trị CNTT của bạn sẽ có thể thu thập dữ liệu này. Điều khoản về quyền riêng tư.

Cảm ơn phản hồi của bạn!

×