Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Martin B

  1. Martin B

    Simphony 19.3. Update Extension Application DLL without uploading to EMC.

    - install Simpony and visual studio on a VM - make a post build event in Visual Studio that copies the project output to the ext app dir and marks it as read only if $(ConfigurationName) == Debug attrib -r...
  2. Martin B

    SupportDonation

    Does anyone know in which version of Simphony the support for charity donations was added? - and how to configure it in Simphony? OPI 19.1.1.6 supports charity donations, but the TransactionRequest from Simphony must include <SupportDonation>Y</SupportDonation>, otherwise the...
  3. Martin B

    How to show Pick Up Check Screen using Simphony Extensibility C# Code

    Ok, so something like this? 1. select closed check from a list 2. send check details to 3rd party system and get QR code data back 3. re-print the printed check with the QR code at the bottom Did you manage to print the QR code? - I saw you made an earlier post, where POSKitchen hinted that...
  4. Martin B

    How to show Pick Up Check Screen using Simphony Extensibility C# Code

    Ah, you did not mention that it was closed checks [glasses] PickUpCheckFromList is for currently open checks, to trigger the reopen closed checks dialogue, you need ReopenClosedCheckFromList - but this requires that the employee has the rights to do so. Also, then you need to use the...
  5. Martin B

    How to show Pick Up Check Screen using Simphony Extensibility C# Code

    The reason for the index is for you to pickup up checks from other RVC's. If you only need to select checks from the current RVC, you can use OpsCommandType.PickUpCheckFromList, and leave out the index property. private void SelectCheckTest() { _selectCheckInProgress = true...
  6. Martin B

    How to show Pick Up Check Screen using Simphony Extensibility C# Code

    I would guess that the index you pass to the OpsCommand is not a valid RVC index. I cannot see from your code snip where it comes from - in my sample I sat the RVC index as an argument on the button (so calling the variable rvcNumber, in my code, is actually misleading). Remember that it is...
  7. Martin B

    Simphny event Listener in add check

    Simphony fires the OpsPickUpCheckEvent when a check is picked up, so you can listen for that and do what you need to do. I like to use lambdas (anonymous functions) OpsPickUpCheckEvent += (s, a) => { // call 3rd party web service... return EventProcessingInstruction.Continue; }...
  8. Martin B

    How to show Pick Up Check Screen using Simphony Extensibility C# Code

    This was actually a bit fun, because there is not a built-in function that fits this in a good way. Below assumes that you want the check number of the selected check, and not actually pick up the check. So, the approach I took was: [ol 1] Execute a PickUpCheckFromListRvcIndex command on the...
  9. Martin B

    How to Get Closed Check Details in Simphony / Micros extensibility using C#

    I've made a simple Extension Application Demo project at Github - you should be able to run it within Simphony using Visual Studio and follow the overall logic. The project can be found here Link I still think that you would be better of using the above project to get information about which...
  10. Martin B

    Res 3700 Redirect Printers

    The function you are looking for is called "printer destination selection", it needs to be enabled on each printer that should participate and on the UWS.
  11. Martin B

    Prevet Simphony from closing the check C#

    I just read your post again, and if the objective is to show a message after payment (and not to abort the payment), you can just use the above event, show what you need to show, and return EventProcessingInstruction.Continue - that would work perfectly.
  12. Martin B

    Authorize void previous round item in a macro

    I'm trying to build a macro that will delete a menu item from a previous round - the caveat is that the employee does not have the right to do this, and I want to authorize that operation as part of the macro. The menu item is a placeholder for some other stuff, and the larger objective is to...
  13. Martin B

    Oracle Gift and Loyalty Cloud Service

    Ah, you wrote "at the POS", and since you mention svc adapter and interface, I guess you are using RES 3700. As far as I remember, there is no built-in way to search for customers with the old svc adapter. You can find the SVC adapter documentation here Link These are the available inquiries...
  14. Martin B

    How to Read Itemdiscount using Simphony Extensibility C# Code

    Reading check details from OpsContext.CheckDetail is not compatible with 19.2 and newer, you should consider using the GetFlattenedCheckDetail() method instead, with works with all versions of Simphony. The CheckDetail property still exists on the OpsContext, but the underlying types have been...

Part and Inventory Search

Back
Top