Suite CRM:存在数据库验证的位置?

时间:2017-03-03 08:33:51

标签: javascript php sugarcrm suitecrm

我使用套件CRM。我需要专家提供的信息。

在保存表单之前,我在哪里可以找到验证数据库中是否存在字段的函数?

我的方案是保存新机会。从弹出列表中选择一个帐户后,我尝试保存新的机会,但是我收到一个错误:

  

"没有匹配,字段不存在"。

我在cache \ include \ javascript \ sugar_grp1:

中找到了一些代码
function validate_form(formname, startsWith) {
    requiredTxt = SUGAR.language.get('app_strings', 'ERR_MISSING_REQUIRED_FIELDS');
    invalidTxt = SUGAR.language.get('app_strings', 'ERR_INVALID_VALUE');
    if (typeof(formname) == 'undefined') {
        return false;
    }

我想找到完成数据库验证的地方,任何人都可以给我任何信息吗?

0 个答案:

没有答案