كيف يمكن التحكم في الحقول الغير منسوخة من بناء على، مثل الـ duplicate في GenericReferenceOverrider بالنافذة؟
Originally posted at https://answers.namasoft.com/question/758/ on 2019-02-18.
كيف يمكن التحكم في الحقول الغير منسوخة من بناء على، مثل الـ duplicate في GenericReferenceOverrider بالنافذة؟
Originally posted at https://answers.namasoft.com/question/758/ on 2019-02-18.
يمكنك عمل المطلوب عن طريق عمل GUI Post Action يقوم بتفريغ الحقول التي ترغب فيها مع إدخال بناء على.
مثال: لو أردت تفريغ المخزن و الموقع في سند التحويل بعد اختيار بناء على، قم بعمل GUI Post Action على حقل fromDoc، وضع التالي في الـ POST Action الخاص بالحقل بناء على:
details.toWarehouse=null
details.specificDimensions.warehouse=null
details.specificDimensions.locator=null
details.toLocator=null
details.genericDimensions.analysisSet=null
details.genericDimensions.department=null
details.genericDimensions.sector=null
details.genericDimensions.branch=null
details.toDimensions.analysisSet=null
details.toDimensions.department=null
details.toDimensions.sector=null
details.toDimensions.branch=null
Originally posted at https://answers.namasoft.com/question/758/ on 2019-02-18.