عند تعدي الموازنة، كيف يمكن إظهار رسالة تأكيد تعرض الحساب وقيمة الحركة وقيمة الموازنة قبل طلب الموافقة؟

Viewed 1

قمت بعمل موافقة عند تعدي الموازنة، وأريد أن تظهر رسالة تأكيد قبل الحفظ تعرض الحساب الذي تعدى الموازنة، بالإضافة إلى قيمة الحركة على الحساب وقيمة الموازنة.

كيف يمكن إظهار هذه البيانات من خلال قالب التأكيد في تعريف الموافقة؟


Originally posted at https://answers.namasoft.com/question/1039/ on 2020-06-02.

1 Answers

يمكنك استعمال التالي في قالب التأكيد (عنوان عربي أو عنوان إنجليزي):

This document will require approval because of the following:

{loop(budgetValidationResult.lines)}

The account {budgetValidationResult.lines.account.$toReal} total transaction will be {budgetValidationResult.lines.totalTransaction} and the total budget is {budgetValidationResult.lines.totalBudget}



Subsidiary is {budgetValidationResult.lines.subsidiary}


Fiscal Year is {budgetValidationResult.lines.fiscalYear}


Fiscal Period is {budgetValidationResult.lines.fiscalPeriod}


Legal Entity is {budgetValidationResult.lines.legalEntity}


Sector is {budgetValidationResult.lines.sector}


Branch is {budgetValidationResult.lines.branch}


Department is {budgetValidationResult.lines.department}


Analysis Set is {budgetValidationResult.lines.analysisSet}


Entity Dimension is {budgetValidationResult.lines.entityDimension}


Ref 1 is {budgetValidationResult.lines.ref1}


Ref 2 is {budgetValidationResult.lines.ref2}


Ref 3 is {budgetValidationResult.lines.ref3}

{endloop}

Originally posted at https://answers.namasoft.com/question/1039/ on 2020-06-02.