การคืนค่า Return Error Message ใน Ofibz

การคืนค่า Return Error Message คือ การคืนค่าข้อความการทำงานผิดพลาดของระบบหลังจากการดำเนินการต่างๆตามคำสั่งแล้วซึ่งใน ofbiz ดังรูป
From Programming Hunter

เรามีวิธีการคืนค่าดังนี้ครับ
ในไฟล์ Simple Method ให้ใช้แทค





ตัวอย่างการใช้งาน




ในไฟล์ java ให้ใช้ดังนี้
ServiceUtil.returnError(errorMessageList);
ServiceUtil.returnError(errorMessage);
ServiceUtil.returnError(errorMessage, errorMessageList);
ServiceUtil.returnError(errorMessage, errorMessageList, errorMessageMap, nestedResult);

ตัวอย่างการใช้งาน
*return ServiceUtil.returnError(UtilProperties.getMessage(resource, "person.create.person_exists", locale));

*errMsg = UtilProperties.getMessage(resource,"partyservices.could_not_add_affiliate_info_write", messageMap, locale);
return ServiceUtil.returnError(errMsg);

*List errorMessageList = new LinkedList();
...
...
errorMessageList.add(UtilProperties.getMessage(resource, "AccountingSpecifyInvoiceToPaymentBillingAccountTaxGeoId", locale));
...
...
if (errorMessageList.size() > 0) {
        return ServiceUtil.returnError(errorMessageList);
    }

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment