Skip to Content
FrontendAppsPosQuerystrings

Querystrings

Some pages feature querystrings to ease testing and deep linking. Ref : https://dev.react-doc.phpr.link/structure/query-strings#list-of-query-strings

/login

Login can be automated by entering these query strings:

  • username — Ex: username=User the username to login with
  • password — Ex: password=Pass the password to login with
  • passECS — Ex: passECS=Pass the password (Encoded, Ciphered, Salted) to login with

/informations

Available query strings:

  • id — Ex: id=2 gets the invoice with this id and edits that invoice
  • client — Ex: client=4 sets the select input client with the client at this id in the select
  • ditributionType — Ex: ditributionType=1 sets the select input distribution type with the distribution type at this id in the select
  • type — Ex: type=5 sets the select input type with the type at this id in the select
  • status — Ex: status=5 sets the select input status with the status at this id in the select

/*/lines

Available query strings:

  • generateInventory — Ex: generateInventory=true generates inventory for all the products in lines
  • manualLine — Ex: manualLine=true the manual line dialog will be open
  • code — Ex: code=Abc123 sets the code input in manual line dialog
  • price — Ex: price=13 sets the price input in manual line dialog
  • quantity — Ex: quantity=3 sets the quantity input in manual line dialog
  • type — Ex: type=1 sets the type id in the select type in manual line dialog
  • slug — Ex: slug=Abc123 sets the slug input in manual line dialog
Last updated on