Thursday, November 15, 2012

Checkout POS on Mac and in your pocket. Cinklet Checkout.


Checkout on your Mac and in your pocket. A seamlessly integrated app with Checkout POS. This app lets you turn your iOS device into a powerful in-store and remote selling tool. You will not only have access to your full store data over Wi-Fi or cellular, but also improve
your customers checkout experience.

https://itunes.apple.com/us/app/cinklet-checkout/id577049658?ls=1&mt=8p

Youtube Channel: http://youtube.com/user/cinklet
Vimeo Channel: https://vimeo.com/channels/checkout
Twitter: @cinklet
Facebook: http://facebook.com/cinklet

Features:
-Connect to your checkout store. Login with your normal username and password.
-View and create new orders. Assign customers and modify quantities.
-Access your store sales and review invoices.
-Lookup your inventory stock, products details and variations.
-Scan products to add to order or fast stock lookup. Scan search receipts.
-Store activity is instantly propagated over the network. Data on your device will always stay up-to date.
-Illustrated setup guide makes sure your environment is set before connectivity

--------------

Cinklet Checkout has integrated support for third-party barcode scanners because they are indispensable for retailers.

-Scan add products to order
-Decrease your customers waiting time
-Fast inventory lookup
-Mobilogics iScan and iPDT380 offer a professional and sturdy look that will provide you with reliable performance

Mobilogics barcode scanners are sold separately at http://www.mobilogics.com.tw

--------------

Cinklet Checkout requires an app on your Mac to retrieve your store data. Cinklet Engine is this powerful server tool. Available for free download: http://cinklet.com/app/engine

--------------

Requirements:
-Mac OS X 10.5 or later
-Checkout 3.0+
-Cinklet Engine 1.0+



 






Monday, May 2, 2011

Support different taxing settings

Trying to implement the different settings of taxes one might need for his store.
What do you need?
If you are using Checkout, what is your tax settings in Checkout App for products and customers?
If you are using Magento, what is your tax settings in Magento for products and customers?

screen shots can help so much.

Wednesday, December 1, 2010

[Beta] 1.4.1 Release

- Fix typo in Administrate Orders template file
=============
1.4.0 Release Update:
- Modify pushing stock, no need to open API connection if no stock has changed since last sync
- Fix “Administrate Stores” bug for the default database connection.
- Fix bug where push stock for the first time cannot find last sync date
- Added check to auto scheduling of newly placed orders, that if they were scheduled before and still pending, they will not be scheduled again.
- Added support of an extra attribute for products barcode, which if not setup will use SKU instead.
- Avoid SOAP error when pushing stock for big number of products. Stock is split to chunks of 50 products by default or as desired in config.
- Product sync now handles updates in checkout way, by entering new records for metavalues and metanumbers instead of editing found one.
- Customer sync now handles updates in checkout way, by entering new records for metavalues and metanumbers instead of editing found one.
- Administrate store section now has better handling and split processes to several options
- Administrate store “Stock” and “Products” Database Mods now check the database if they have been applied before.

NEW DOWNLOAD LINKS

Rapidshare download:
http://rapidshare.com/files/448895965/CheckoutAppSync-1.4.1.tgz
mediafire:
http://www.mediafire.com/?bn2s8gc2irj2kdn
hotfile:
http://hotfile.com/dl/106215848/2379079/CheckoutAppSync-1.4.1.tgz.html

Saturday, August 28, 2010

[Beta] 1.3.4 Release

1- First Time enabling pushing stock from Checkout Server side using API
2- Enable or disable manual stock sync
3- Added option to choose what type of the Magento Installation it is (Online store side or CheckoutApp server side), which decides which sync mechanism to use (only stock sync with API is compatible with this so far)
4- Cron Job stock sync is now compatible with Fetch and Push (depending on server type setting in point “3”)

http://www.megafileupload.com/en/file/263519/CheckoutAppSync-1-3-4-tgz.html

[Beta] 1.3.3 Release

Release Update:

1- Sync stock now is with API (fetch on Magento store side) feature
2- Only changed stock are updated, old mechanics of updating every product is now deprecated
3- Password in config is now invisible to user
4- Easier initial setup with one click. (copies metatype values, database name, apply database change to make it compatible with point ‘2’)

http://www.megafileupload.com/en/file/263509/CheckoutAppSync-1-3-3-tgz.html

Saturday, August 21, 2010

Stock Sync Code Update

First TODO in the previous TODO list was:
Very heavy server load on product stock sync.
Solution:
  • Use the CA “lastmodified” timestamp value “stock” table ALTER introduced in previous post “Starting Over” to compare the changes done since last sync time.
  • Create an API that handles the stock update in case stock quantities changes have been detected.
Starting work on this issue, but according to the previous “Fetch Or Push” post, I should make the interface to be on CA’s server side.
Since moving the interface to be on CA’s side will require more work, so I will implement it first normally on Magento’s Online Store side but make it compatible with future interface change.

1- Add “insert“ and “get“ last stock update sync timestamp in preference table (done)
2- Edit current stock query to compare with last stock sync time (done)
3- Add Api Configuration to admin (done)
4- Add Api function that will handle the request, make the query and return result (done)
5- Edit, Add stock sync function to use the Api connection (done)
6- Add cron job to handle auto stock sync using new concept (done)
7- Disable old stock sync concept cron job (done)

Fetch Or Push?

Depending on wether it is to fetch or to push, the work trouble will differ.
I think the advantage of making the sync interface on CA’s server side, will make faster logging in and server will not need a Static IP for the module to work.
Not having a static IP is useful if managing your store from your brick and mortar HQ just needing to push the products online.
Disadvantages are, more custom APIs need to be coded....maybe some more.