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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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...
  15. Martin B

    Prevet Simphony from closing the check C#

    You can use the OpsTmedPreviewEvent from Micros.Ops.Extensibility and return the enum EventProcessingInstruction.AbortEvent. But please keep in mind that while this works fine when the tender is posted explicitly (eg. someone presses a tender media button), in the situation where the tender is...
  16. Martin B

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

    The OpsContext.DataStore is more an abstraction over the database, so you would probably be better of making the SQL queries directly to the database. If you do this from an extension application, you can new up a database connection with the EMC.Data.Sql.DatabaseConnection type, then you don't...
  17. Martin B

    Oracle Gift and Loyalty Cloud Service

    You can search for a customer with the GetCustomer request code through the Gift & Loyalty CRM API. More information about the CRM capabilities and functionality can be found in doc id 2138811.1 (Gift and Loyalty CRM API) in MOS. The CRMMessage goes something like below, where you can use...
  18. Martin B

    iCare check digit calculation

    Sure, and with foreign cards, we can use the standard 1212 calculation (which is just MOD10) - this is what we have done for years, but now I actually need the algorithm for a specific use case. I was hoping that either you or Cathal had it... :) I've looked in the StoredValueCommandModule.dll...
  19. Martin B

    iCare check digit calculation

    Does anyone have the logic to calculate the "Micros 1212 weighted check digit"? Thanks.

Part and Inventory Search

Back
Top