I need help with Magento. I want to achieve something like I will have three packages for meal plans like 2meal plan, 3 meal plan etc and once user choose any meal plan then I wants to give user a way of selecting day wise ordering from given options like Monday ,Tuesday, Wednesday etc.
Please refer to image attached as I need something like that only.
Meal Plan Example
Meal order style example
This is what I have in mind at the moment but I am open to other ideas as well like any way of achieving the scenario I have in my mind.
You can show Meal Plans as a category list page and Meals detail as product detail page where you can show options like Monday, Tuesday etc as a Custom Option where Custom Options name will be like week days and their type will me Checkbox and checkbox options you can provide as you want.
Related
I just wanted to see if there was a way to give the user access to adjust the aggregate by hour/day/week/month/year. I know it is possible in the Analysis but I would like to allow the end user that ability so I can just have one Sales Visual that the user can aggregate rather than having a sales by Day/ Sales by Month/ Sales by Year.
Let me know if this is possible.
Thank you,
Casey
Choose a visual, in the fields well you can add either an hierarchy or add field like the screenshot.
Then you can drill down on dashboards too.
I have a list of opportunity product lines associated to the opportunity. The products in the opportunity lines are labor based, engineering services. For projecting resource requirements I want to add two fields to my opportunity entity.
Total Labor Effort
This field would be populated by the total quantity of all "labor based" products in the opportunity product lines.
Weighted Labor Effort
Same as Total Labor Effort, except the value will be multiplied by the probability of closing the deal. This is a separate custom field in the opportunity.
I have tried a roll up field, but I can't seem to get it to sum up the quantity of the products in the product lines. It will only look at the product lines themselves. Calculated field seem to be more limited even.
What features of Dynamics CRM could help me achieve this?
If I could add my 2 cents,
There is indeed rollup field limitation here.
Now I could sense 2 ways to achive this.
Dynamics-365-Workflow-Tools
Reason been, this is well documented and up to date with latest CRM Version and especially fucntion query Values
If you don't want to add overhead of adding any 3rd party solution may it be free of cost, I would move my logic to Plugins i.e custom c# code to perform operations (server side)
I personally would go for custom code, you have more control of what you want to achieve there.
I recommend using Kaskela Workflow Elements, a free workflow extension that can query the opportunity products and return the number of line items: https://kaskelasolutions.com/current-query-get-results/
After you import Workflow Elements, you will need two workflows:
1. one that is started whenever a product line item is created /modified/deleted and it will update a "trigger" field on the opportunity, such as a "date detail changed"
2. one on the Opportunity that will count the detail lines.
In the 2nd workflow, use the "Query - Get Results" feature
You will need to create a FetchXML query to get the Opportunity Line items - you can use Advanced Find to create the query. This looks a bit strange because you create the query using the child records and link back to the parent opportunity, but this is how Kaskela filters the results to just the Opportunity Lines that are related to the opportunity.
The next step in your workflow is to insert the results into the opportunity record:
Ultimately I solved this using MS Flow to retrieve all the Opportunity Line from an "updated" Opportunity and summing them up before finally writing to the Opportunity field. For weighted value I made a simple calculated field based on the close probability and total labor effort.
MS FLow Screen Shot
I am recording a food ordering website in jmeter,flow is 1.launch 2.take away 3. select meal 1 4.select meal 2 5.select meal 3 6.add to cart 7.order details 8.payment.I want different meal selection but when i correlate product id and category id , every time the meal selected are same. Where am i wrong?
As per your explanation, i could understand that the Product ID and Category ID are not dynamic. It should have been predefined for each and every meal. So you are capturing the same value and using, so you are able to see the same meal selected for every run
I'm using virtuemart on Joomla and I was wondering if it is possible to make a discount depending on the clock. I want to add a 20% discount on sales made from 16.00 through 20.00 avery day.
Thanks in advance
I think there's a possible solution based on an extension called Chameleon. Using Chameleon you can set the VM shopper group on the fly, according to specific conditions.
So perhaps you could set up a special shopper group that has a 20% discount. Then you would make a "rule" in Chameleon that triggers only between 16:00 and 20:00. The "succeed action" in that rule would be to set the shopper group to the new shopper group.
That way, people would be able to see the special prices only during those times. The shopper group switch is not "sticky" i.e. it doesn't permanently assign the person to that shopper group.
Some people use this functionality for setting different pricing for people in different countries (GeoIP), or different domains on their site, so I think it should work fine for time-based things as well. The only issue might be what happens if they have added something to their cart before 20:00 but don't check out in time; but I am sure that could be solved.
www.metamodpro.com/chameleon
Out of the box is not possible to do that. If you doesn't mind to spend some money you may buy a virtuemart plugin called 'quantity plugin' which calculates discount based on quantity and modify it to use time instead of quantity.
Alternatively you may check how the calculation rules works by examining a few files:
administrator/com_components/com_virtuemart/controllers/calc.php
administrator/com_components/com_virtuemart/models/calc.php
administrator/com_components/com_virtuemart/views/calc/view.html.php
administrator/com_components/com_virtuemart/tables/calc*.php
Using those files as starting point you could implement your own discount rule.
Hope this helps.
I am considering using VirtueMart to set up a client with an easy to update e-commerce solution. I am new to VirtueMart, and Joomla, and am really just looking for a quick easy solution to e-commerce, so I thought to check the software out.
Anyhow I have a requirement where the client lists a product for renting purposes, the price to rent varies depending on the number of days the desired product is going to be rented for. Does anybody know of an easy way to implement this using VirtueMart?
yes, virtuemart should be able to do what your looking for. you can set "advanced attributes" for each product/item, and each attribute can have its own price.
So you could have say, an attribute for each rental perio, for example:
Product: "Rental A";
Attribute 1: 1 day - $100;
Attribute 2: 2 days - $190;
Attribute 3: 3 days - $270
...
and so on. There are various in-built ways that you can choose to display this, but I think a dropdown menu is the simplest and cleanest.
Also bear in mind that these are static prices (i.e. need to be manually entered into the system for each product/item) -- so you won't be able to base it on a formula or calculation without some custom coding/hacking...
Hope this helps,
E