emagedev/trello

Connect Your Magento™ 1.9 Orders With Trello™ Board

Installs: 140

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Type:magento-module

0.3.1 2018-01-05 13:26 UTC

This package is not auto-updated.

Last update: 2024-04-14 03:17:46 UTC


README

Control Your Orders Statuses With Trello™

Update coming soon

This module can help you to view your order's statuses realtime with Trello™ board updates. All you need to do is to set up your API key & token and grab a board ID. You can read how to set up module here.

As for now, you cannot control your Magento™ orders using Trello™ Board.

Will be released about 4th of March.

Also, this module provide simple API methods to interact with Trello™. If you want to know more, see here.

# Setting Up

To set up a module, you should log in into your admin panel (if you already logged in, you probably should log out first). Then go to system → configuration. In sidebar, find Trello API under services tab.

To set up token and access key, go to https://trello.com/app-key, copy a key ang generate token (there's a link under token description). Paste key and token to the corresponding fields.

Then, create or open in browser one of existing Trello™ boards, click the "show menu" button if menu not opened, click "More" → "Print and Export" and then select "Export as JSON". The JSON document will be opened in your browser, you need to copy the value of id field, it is like id: "0123456789abcdef12345678", then paste that id (like 0123456789abcdef12345678) into Board ID field inside Order Status box.

# API Methods

# Mage::getSingleton('trello')->createCard($params)

Creates a card with following params.

Called API method: https://developers.trello.com/v1.0/reference#cards-2

# Mage::getSingleton('trello')->updateCard($cardId, $params)

Updates a card with cardId with following params.

Called API method: https://developers.trello.com/v1.0/reference#cards-1

# Card Params

Params should be passed as associative array with following keys to method:

  • name (string) Card name
  • desc (string) Card detailed description in full view
  • closed Is card makred as closed
  • idMembers List of members that connected to this card
  • idAttachmentCover Id of attachment that used as card cover
  • idList Id of list to which card belongs
  • idLabels Id of labels (tags) for this card
  • idBoard Id of board on which card should appear
  • pos Card position in list
  • due Due date
  • dueComplete Mark due date as complete
  • subscribed

Translations

Packaged with american english (en_US) and russian (ru_RU) translations.

Unit Testing

Most of API methods are covered, as well as order helpers. Unit tests provided by EcomDev_PHPUnit.

Known Issues

  • Sometimes order card may not be created or updated, because we hardly limit execution time to keep your store fast. This probably will be fixed in near future, as we release a scheduling module for queues.

To Do

  • Add dependency for scheduled running of API calls, with TTL and retries
  • Maybe using RabbitMQ
  • Opposite direction API - update orders when cards updated

N.B. You can update all cards at any time using action in admin order grid.