taitava / silverstripe-pricelist
Just a simple pricelist functionality that makes it possible to create products and have them listed in specific pricelists. No e-commerce functions.
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 8
Type:silverstripe-module
Requires
- silverstripe/cms: ~3.1
- silverstripe/framework: ~3.1
Suggests
- unclecheese/display-logic: Hides the EndingPrice field in the backend when a product has a fixed price. Not required but makes the UI a little bit more cleaner.
- undefinedoffset/sortablegridfield: Makes it possible to drag & drop pricelists and pricelist items to different order in the backend.
README
Setup
- Extend SiteTree (or some other class derived from it):
mysite/_config/pricelist.yml
:
SiteTree: extensions: - PricelistSiteTreeExtension
Note! If you apply the extension to any other class than SiteTree
, you need to define this additional configuration in mysite/_config/pricelist.yml
:
Pricelist: belongs_many_many: Pages: *YourCustomClassNameHere*
If you forget this, (at least) the backend will crash when you go to add a new Pricelist to your pricelist page. This additional configuration is not needed if you just extend the whole SiteTree
class, as that's already configured by default.
- Put this to
themes/*your-theme-folder*/Page.ss
(or to some other template file):
$AllPricelists
- If you want to adjust some configuration settings, you can put these to
mysite/_config/pricelist.yml
:
Pricelist:
include_stylesheet: false
currency_sign: '€' #Whether to use the Requirements class to include this module's own stylesheet in frontend to perform some small styling.
currency_side: 'right'
PricelistItem:
hide_zero_prices: false #If true, do not display anything in the price column for items whose price is 0.
Note that the above listing contains the default values, so if they seem good for you, you do not need to copypaste this list to anywhere.
-
Run
/dev/build?flush=all
in your browser. -
Go to the CMS and edit some page. You should see a Pricelists tab there.
Contribution
If you have any ideas about how to improve this module or any questions, I would be glad to hear them! :) Please raise an issue or create a pull request - which ever you like.