Created
November 19, 2018 19:38
-
-
Save seth-macpherson/1053f6a7f45841123e5f36f44c3ff3a9 to your computer and use it in GitHub Desktop.
Processing Pricing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROCESSING = { | |
cb: { | |
1 => { | |
cost: 1500.00 | |
}, | |
2 => { | |
cost: 2200.00 | |
}, | |
3 => { | |
cost: 2900.00 | |
} | |
}, | |
cb_tissue: { | |
1 => { | |
cost: 2369.00 | |
}, | |
2 => { | |
cost: 3838.00 | |
}, | |
3 => { | |
cost: 5307.00 | |
} | |
}, | |
tissue: { | |
1 => { | |
cost: 869.00 | |
}, | |
2 => { | |
cost: 1738.00 | |
}, | |
3 => { | |
cost: 2607.00 | |
} | |
} | |
}.with_indifferent_access.freeze |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment