Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Support / Selecting item from Item view list
« Last post by DQ on November 26, 2013, 05:41:45 pm »
I need help.  My employees are complaining that  if item A is selected and if they select item B, it selects both items instead of deselecting item A.
I know this is a feature which allows to cancel/modify multiple items at one time but would like to implement this.

What is the best way  to implement this?
62
Support / Executing a new version of Migration file: What am I missing
« Last post by DQ on November 25, 2013, 06:48:30 pm »
Hello,
  I have created a new Migration_022.cs file to add employee schedule table.  I have followed existing migration class file where added [Migration(22)] attribute and Up() and Down() function.   

I changed DbVersion to 22 and created migrate.txt file which trigger migration(context) function call and execute migration code but somehow my new class is not getting executed.  What am I missing?

 var executor = new TaskExecutor(migrationContext);
                executor.Execute();
63
V3 Development / Quick payment buttons
« Last post by pdsluk on November 25, 2013, 06:14:12 pm »
I am having difficulty understanding automation features on V3. I am attempting to add quick payment buttons under the ticket window. I really have no skills in this area, but this is my best guess as to how to achieve this:

1. Create an Action: "Quick Cash" -Create Account Transaction -Sale Transaction -Amount {total}
2. Create an Automation Command: "Quick Cash" -Map to display under ticket
3. Create a Rule: "Quick Cash Rule" -Automation Command Executed -AutomationCommandName=Quick Cash -Add the following actions: Quick Cash, Update Ticket Status, Update Order Status, Update Entity State, Update Order, Update Order Status, Market Ticket Closed, Close Ticket.

Obviously this isn't correct, as nothing happens when I hit the cash button. Could someone please help out? Greatly appreciated. -Peter
64
Support / Re: SambaPOS with two different DB??
« Last post by lemmings on November 25, 2013, 06:13:57 am »
Hello

What are you trying to achieve ?

It is possible but you would have to run two versions of SambaPos, so let me know what your trying to accomplish and I will try to help
65
Support / SambaPOS with two different DB??
« Last post by Buscad0r on November 24, 2013, 07:01:16 pm »
Hello everyone,

I need help using SambaPOS with two different databases on the same computer.
I saw the post that was published for use sambaPOS in training mode, can you help me with something like that?

thanks in advance
66
Support / Print inventory used
« Last post by Buscad0r on November 23, 2013, 01:33:17 pm »
 Hello, good day

Finally I feed recipes and inventory items, I see the report of used inventory does not have the option to print.

How I can get an impression of the inventory used?

I will appreciate any guidance

best regards
67
Aynı sorunla karşılaştığım için bu topic altına da kendi çözüm yolumu yazayım compact toolbox programının yeni versiyonunu değil de bir önceki versiyonunu kullanırsanız rahatlıkla database aktarımını yapabilirsiniz:

http://sqlcetoolbox.codeplex.com/releases/view/103781

Standalone 3.0.0.7 for SQL Server Compact 4.0
68
Yardımlaşma / Re: v3 ağ üzerinden sdf dosyasını kullanma
« Last post by Akropolis on November 22, 2013, 06:43:35 am »
Evet sonunda yaptım :D sorun kullandığım toolbox versiyonundaymış, son versiyonu indirmiştim o sorun veriyor daha sonradan aynı sorunla karşılacak olan arkadaşlar için buraya da yazayım eğer export işleminde hata veriyorsa bir önceki versiyonu yani aşağıdaki versiyonu indirmelisiniz:

 http://sqlcetoolbox.codeplex.com/releases/view/103781
Standalone 3.0.0.7 for SQL Server Compact 4.0

Bir de yukarıda verilen linklerdeki aktarım olanın v3 için tam olarak geçerli değil orada yeni oluşturulacak databasein isminin sambadata2 olması gerektiği yazıyor v3 için "SambaPOS3" olacak.

69
Yardımlaşma / Re: v3 ağ üzerinden sdf dosyasını kullanma
« Last post by Akropolis on November 22, 2013, 04:25:38 am »
Yine ben :) .net sorununu hallettim hepsini toptan kaldırıp yeniden yükledim sql server 2008 i kurdum toolbox programını indirdim sdf dosyasını dışarı aktarırken hata alıyorum forumda arattım mehmet bey bu sorunu başkasında da yaşadığını dosyayı kendisinin alıp aktardığını söylemiş o yüzden ben de başka bilgisayarda denedim ama maalesef olmadı aynı hatayı alıyorum hatta sambaposun ilk oluşturduğu sıfır database dosyasında da aynı hatayı alıyorum bi yerde sorun var ama nerede bulamadım bir türlü :( Yardımcı olabilecek var mı?
70
Support / Re: Increment(+)/Decrement(-) button : amount not updated on display poll
« Last post by DQ on November 20, 2013, 08:07:52 pm »
I fixed by adding    _selectedTicket.RecalculateTicket(); in  TicketListViewMode.cs class. It works fine but please let me know if it is not right place.

private void OnDecQuantityCommand(string obj)
        {
            LastSelectedTicketItem.Quantity--;
            _selectedTicket.RecalculateTicket();
            _selectedTicket.RefreshVisuals();
        }

        private void OnIncQuantityCommand(string obj)
        {
            LastSelectedTicketItem.Quantity++;
            _selectedTicket.RecalculateTicket();
            _selectedTicket.RefreshVisuals();
        }
Pages: 1 ... 5 6 [7] 8 9 10