+
-
Cash Cassette Bill Count
+
Cash Cassette Bill Count
-
+
When enabling cash-out, your bill count will be automatically set
to zero. Make sure you physically put cash inside the cash
cassettes to allow the machine to dispense it to your users. If
@@ -137,9 +131,9 @@ const WizardStep = ({
count for this machine on your Cash boxes & cassettes tab under
Maintenance.
-
Default Commissions
+
Default Commissions
-
+
When enabling cash-out, default commissions will be set. To change
commissions for this machine, please go to the Commissions tab
under Settings where you can set exceptions for each of the
@@ -147,7 +141,7 @@ const WizardStep = ({
{error &&
Failed to save }
-
onContinue()}>
+ onContinue()}>
{label}
diff --git a/new-lamassu-admin/src/pages/Cashout/WizardStep.styles.js b/new-lamassu-admin/src/pages/Cashout/WizardStep.styles.js
deleted file mode 100644
index 4cd13301..00000000
--- a/new-lamassu-admin/src/pages/Cashout/WizardStep.styles.js
+++ /dev/null
@@ -1,61 +0,0 @@
-import { errorColor, spacer } from 'src/styling/variables'
-
-const LABEL_WIDTH = 150
-
-export default {
- title: {
- margin: [[0, 0, 12, 0]]
- },
- titleDiv: {
- paddingBottom: 32
- },
- subtitle: {
- margin: [[32, 0, 21, 0]]
- },
- edit: {
- margin: [[0, 0, 0, 0]]
- },
- error: {
- color: errorColor
- },
- bill: {
- width: 131,
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'end'
- },
- billInput: {
- width: '100%'
- },
- suffix: {
- paddingLeft: spacer * 2
- },
- submit: {
- alignSelf: 'flex-end'
- },
- picker: {
- width: LABEL_WIDTH
- },
- header: {
- display: 'flex'
- },
- column: {
- display: 'flex',
- flexGrow: 2,
- flexDirection: 'column',
- paddingBottom: 32,
- justifyContent: 'space-between'
- },
- step: {
- flex: 1
- },
- stepImage: {
- position: 'relative',
- top: -20,
- right: 14
- },
- disclaimerIcon: {
- float: 'left',
- margin: [[2, 16, 48, 0]]
- }
-}
diff --git a/new-lamassu-admin/src/pages/Cashout/helper.js b/new-lamassu-admin/src/pages/Cashout/helper.js
index 8178a2f2..8aa62d0b 100644
--- a/new-lamassu-admin/src/pages/Cashout/helper.js
+++ b/new-lamassu-admin/src/pages/Cashout/helper.js
@@ -102,7 +102,7 @@ const DenominationsSchema = Yup.object()
})
)
-const getElements = (machines, locale = {}, classes) => {
+const getElements = (machines, locale = {}) => {
const fiatCurrency = R.prop('fiatCurrency')(locale)
const maxNumberOfCassettes = Math.max(
...R.map(it => it.numberOfCassettes, machines),
@@ -122,7 +122,7 @@ const getElements = (machines, locale = {}, classes) => {
options: options,
labelProp: 'display',
valueProp: 'code',
- className: classes.autoComplete
+ className: 'w-full'
}
: { decimalPlaces: 0 }
diff --git a/new-lamassu-admin/src/styling/global/global.css b/new-lamassu-admin/src/styling/global/global.css
index af8794ce..5c8432f6 100644
--- a/new-lamassu-admin/src/styling/global/global.css
+++ b/new-lamassu-admin/src/styling/global/global.css
@@ -41,6 +41,7 @@
--color-tomato: var(--tomato);
--color-ghost: var(--ghost);
--color-zircon: var(--zircon);
+ --color-neon: var(--neon);
--color-malachite: var(--malachite);
--color-orange-yellow: var(--orange-yellow);
}