Skip to content

Releases: freesoftwarefactory/crm

fix bug utf8

11 Jan 05:44
Compare
Choose a tag to compare
1.5.3

utf8 encode

fix bug, issue #2

11 Jan 03:44
Compare
Choose a tag to compare
1.5.2

FIX ISSUE #2

can add new items.

17 Dec 15:18
Compare
Choose a tag to compare

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

event handlers

28 Sep 20:09
Compare
Choose a tag to compare
1.5

event handlers

fix bug, empty crm_field returns bad results.

24 Sep 16:26
Compare
Choose a tag to compare

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.

24 Sep 16:11
Compare
Choose a tag to compare
1.4.0004

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

passing parameters to listRel

24 Sep 15:56
Compare
Choose a tag to compare
1.4.0003

listRel now supports parameters

extra information

24 Sep 14:26
Compare
Choose a tag to compare

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

event after update the search results

24 Sep 13:47
Compare
Choose a tag to compare

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

24 Sep 13:12
Compare
Choose a tag to compare

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);