Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Starting to build out MRK.CONTROL POS tab for Rover Web integrations #139

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
## Marketing Module Controls and Defaults (MRK.CONTROL)

<PageHeader />

## MRK.CONTROL POS Tab

> **Integrations** Use the JSON blocks provided to build up the MRK CONTROL API response. Feature flags will have the value 'Y' to be turned on.

![POS](./pos.png)

**POS Order Options**

POS Order Options allow grouped type to be using in POS in place of Sales Order `types`. This combines `types` and `Ship Via` as well as the ability to specify if an order requires a signature.

```
"pos_part_status_items": [
{
"pos_part_status": "A"
},
{
"pos_part_status": "C"
},
{
"pos_part_status": "P"
}
]
```

**POS Options**

**Valid Part Statuses**

The values defined in this table force the selection of parts to only be parts with the specified status.

**POS Extra Info**

Table used to display custom fields in POS Extra Information tab.

```
"pos_extra_info_items": [
{
"pos_extra_info": "1"
},
{
"pos_extra_info": "17"
},
{
"pos_extra_info": "125"
}
]
```

**POS Feature Flags**

| Feature Flag | Description | JSON |
| ------------------------------ | ------------------------------------ | ------------------------- |
| Hide Load Customer Button | Hide the load customer button in POS | hide_load_customer_button |
| Disable Downloading Statements | |
| Disable Emailing Statements | |
| Manually Load Orders | |
| Manually Load Invoices | |
| Hide Use New Address Button | |
| Prompt on price override | |

<PageFooter />
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
[ RMA ](MRK-CONTROL-2/README.md)
[ Module Interfaces ](MRK-CONTROL-3/README.md)
[ Credit Cards ](MRK-CONTROL-4/README.md)
[ Accounting ](MRK-CONTROL-5/README.md)
[ Accounting ](MRK-CONTROL-5/README.md)
[ POS ](MRK-CONTROL-5/README.md)

**Purpose**
The MRK.CONTROL procedure is used to define default information which will be
Expand Down
Loading