Skip to content

Releases: freesoftwarefactory/crm

fix bug utf8

Choose a tag to compare

@christiansalazar christiansalazar released this 11 Jan 05:44
1.5.3

utf8 encode

fix bug, issue #2

Choose a tag to compare

@christiansalazar christiansalazar released this 11 Jan 03:44
1.5.2

FIX ISSUE #2

can add new items.

Choose a tag to compare

@christiansalazar christiansalazar released this 17 Dec 15:18

1.5 has a bug when trying to create a new item.

event handlers

Choose a tag to compare

@christiansalazar christiansalazar released this 28 Sep 20:09
1.5

event handlers

fix bug, empty crm_field returns bad results.

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 16:26

fixed: contact widget provides a default value : 'list', all column definitions in crm-config having this attribute will be selected.

crm_field used to retrieve field values.

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 16:11
1.4.0004

fix bug. crm_field now is used to retrieve column values.

passing parameters to listRel

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 15:56
1.4.0003

listRel now supports parameters

extra information

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 14:26

more information in crm columns and event data, see notes at 1.4.0001

event after update the search results

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 13:47

Sample listener

[php]
 <?php $this->registerJs("                                                       
$( document ).on( 'crm:find:list:updated', { some: 'data'},
   function( event, list, keywords, resp ){
      //  console.log( event.data.some );
  });                                                                             
",\yii\web\View::POS_READY); ?>

rel meta

Choose a tag to compare

@christiansalazar christiansalazar released this 24 Sep 13:12

now you can update relationship metadata

*To setup meta data:

\Yii::$app->crm->updateRelMeta(123, "some data");
  • To retrieve it:

    the Api::listRel() returns a array of relationships containing the new meta attribute.

  • Database Update:

    alter table crm_contact_rel add colum meta char(255);