Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
Support / Increment(+)/Decrement(-) button : amount not updated on display poll
« Last post by DQ on November 19, 2013, 06:39:54 pm »
Hello,
  When my employees increment (+) or decreament(-)  quantity  by selecting +/- button for an item (before going to settle screen), it shows update amount on the screen but pole display doesn't show that.

I have added two rules to update display.

1.  When line item added
2.  When total amount changed

It works fine when item is added twice separately.   

I think below code is associated with +/- buttons.  How do I fix it

 private void OnDecSelectedQuantity(string obj)
        {
            if (LastSelectedTicketItem.IsLocked)
                LastSelectedTicketItem.DecSelectedQuantity();
            else LastSelectedTicketItem.Quantity--;
        }

private void OnIncSelectedQuantity(string obj)
        {
            if (LastSelectedTicketItem.IsLocked)
                LastSelectedTicketItem.IncSelectedQuantity();
            else LastSelectedTicketItem.Quantity++;
        }
72
Support / Re: 10 New features have been added. Check it out
« Last post by DQ on November 19, 2013, 06:30:30 pm »
73
Support / Re: SQL query to retrieving recent 8 tickets
« Last post by DQ on November 19, 2013, 06:25:32 pm »
Thanks Guys.

 I came up with below query.

SELECT TicketItems.Id as TicketItemsId, TicketId,MenuItemName,TicketItems.PortionName,TicketItems.Quantity,Price,Voided,Gifted, CreatingUserId, Tickets.Id, Tickets.TicketNumber, Tickets.TotalAmount, CONVERT(varchar, Tickets.LastPaymentDate, 20) as LastPaymentDate, Users.Name FROM TicketItems, Tickets, Users where TicketId in (SELECT TOP(8) Id from Tickets ORDER BY LastUpdateTime DESC) AND TicketId = Tickets.Id and CreatingUserId=Users.Id

To get the flavors/properties of each item
SELECT TicketItemProperties.Name as Flavor FROM TicketItemProperties WHERE TicketItemProperties.TicketItemId = " + str(row.TicketItemsId)

Let me know if there is a optimized way combine both the queries.

I have created python based web interface to view live transactions remotely.  Will share with team once completed.
74
Support / Re: message server connected but not updating instantly
« Last post by Hugove on November 19, 2013, 12:19:21 pm »
server install. The same process as V2 which I have been using for some time now. V2 works perfectly. But now struggling on V3.

Thanks Emre.

Hugo
75
Support / Re: dual language products and printer settings
« Last post by bewafa on November 19, 2013, 12:01:25 pm »
thankyou was working in the same sense .. i thought maybe there is another way its done .. working fine thankyou for the reply
76
Support / Re: message server connected but not updating instantly
« Last post by emre on November 19, 2013, 11:57:18 am »
Hello Hugove. That works fine on our installs. Did you installed it as a web service or are you running server application?
77
Support / Re: dual language products and printer settings
« Last post by emre on November 19, 2013, 11:56:10 am »
You can use product tags for the second language names and print them on tickets instead of product names.
78
Support / dual language products and printer settings
« Last post by bewafa on November 19, 2013, 11:42:01 am »
Hi, I've been using v3 lately and I managed to display products on menu with 2 languages for waiters in 2 lines
the product itself is named under 1 language..
is there any way to print headers on kitchen / bar printer as i want one printer to display one language and the other printer other language..
I've tried some steps but they are failing can anyone give me some idea's how its possible??
the point is to display single language on final bill but for kitchen and maybe bar printer to be different as people would be more understandable the order...
79
Support / message server connected but not updating instantly
« Last post by Hugove on November 19, 2013, 10:56:58 am »
Hi all,

I am trying V3 at the moment but cannot get the message server to update instantly. I have done the following:


- Installed message server on server
- Added the name in local settings, added the server name in second machines local settings.
- Message server is running and says connected on both machines.
- Firewalls are both off

Only updates when I refresh, any ideas?

H
80
Yardımlaşma / Re: v3 ağ üzerinden sdf dosyasını kullanma
« Last post by Akropolis on November 18, 2013, 02:22:54 pm »
Evet forumu iyice araştırınca farkettim çok teşekkür ederim. Yalnız benim bilgisayar xp o yüzden sql server 2012 kuramıyorum 2008 i ise bulamıyorum bir türlü :( 2005 kurayım dedim o da .net fw de hata veriyor 2.0 versiyonunu arıyor .netin.
Pages: 1 ... 6 7 [8] 9 10