Re: Creating Promotion

2011-08-23 Thread S K Pradeep Kumar
Hi Piyush,

There are so many category types.
PROMOTIONAL == Featured
NEW ARRIVAL's == latest
MOST POPULAR
BEST SELLER can be achieved by ProductCalculatedInfo entity.

With regards,
S K Pradeep kumar,
9980609494


On Mon, Aug 22, 2011 at 1:28 PM, pmittal.1982 wrote:

> Hi All,
>
> I have just started exploring ofBiz and am planning to migrate my old
> website to ofBiz platform.
> I also want to have two or three categories of products on the ecommerce
> main page like
>
> "Latest Arrivals"
> "Featured"
>
> etc, cn you please tell if we have a solution to the problem raised by
> Abhijeet. I tried the solution proposed by Preeti but somehow its not
> working.
>
> Thanks in advance.
>
> Piyush
>
> --
> View this message in context:
> http://ofbiz.135035.n4.nabble.com/Creating-Promotion-tp164906p3759509.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>


Re: Creating Promotion

2011-08-23 Thread Rishi Solanki
On Tue, Aug 23, 2011 at 5:04 PM, Rishi Solanki wrote:

> Abhijeet,
> Please find my responses inline.
>
> Rishi Solanki
> Manager, Enterprise Software Development
> HotWax Media Pvt. Ltd.
> Direct: +91-9893287847
> http://www.hotwaxmedia.com
>
>
> On Tue, Sep 8, 2009 at 2:20 PM, Abhijeet Pandey  > wrote:
>
>> Hi All,
>>
>> I want to create few Promotion ( Special offer , Offer of the day, Hot
>> Deal ) etc and i want to show all these on home page
>
>
> Goto - http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
> Here you will see in the right nav 'Special Offers' section. This is
> something you want to do.
> Look into the code - /ecommenrce/widget/CartScreens.xml which is
> responsible for showing the promotions.
>
>
screen name is - 'minipromotext'



>
>
>> .
>>
>> just like we have "Featured Products" on home page. i want to create and
>> show 4-5 products from above type of promotions on home page and give a link
>> "Show All" which will take user to page which will have listing of all
>> products which falls in that promotion.
>>
>>
> As jacques suggested you just need to add the products in the promotions
> while creating the promos.
> After that the same products should be associated with the PROMOTIONS
> category (which shows the Featured Products) and to add them at top change
> the sequence number in the relationship.
> You can look at -
> https://demo-trunk.ofbiz.apache.org:8443/catalog/control/EditCategoryProducts?productCategoryId=PROMOTIONS
>
> You just need to change the sequence numbers and then you will be able to
> see the sequence on the front store.
>
>
>
>> Can someone guide me how to do this.
>>
>> Attaching how it will look in attachment.
>>
>> Plz Help.
>>
>>
>>
>> --
>> Abhijeet Pandey
>>
>
>


Re: Creating Promotion

2011-08-23 Thread Rishi Solanki
Abhijeet,
Please find my responses inline.

Rishi Solanki
Manager, Enterprise Software Development
HotWax Media Pvt. Ltd.
Direct: +91-9893287847
http://www.hotwaxmedia.com


On Tue, Sep 8, 2009 at 2:20 PM, Abhijeet Pandey
wrote:

> Hi All,
>
> I want to create few Promotion ( Special offer , Offer of the day, Hot Deal
> ) etc and i want to show all these on home page


Goto - http://demo-trunk.ofbiz.apache.org/ecommerce/control/main
Here you will see in the right nav 'Special Offers' section. This is
something you want to do.
Look into the code - /ecommenrce/widget/CartScreens.xml which is responsible
for showing the promotions.



> .
>
> just like we have "Featured Products" on home page. i want to create and
> show 4-5 products from above type of promotions on home page and give a link
> "Show All" which will take user to page which will have listing of all
> products which falls in that promotion.
>
>
As jacques suggested you just need to add the products in the promotions
while creating the promos.
After that the same products should be associated with the PROMOTIONS
category (which shows the Featured Products) and to add them at top change
the sequence number in the relationship.
You can look at -
https://demo-trunk.ofbiz.apache.org:8443/catalog/control/EditCategoryProducts?productCategoryId=PROMOTIONS

You just need to change the sequence numbers and then you will be able to
see the sequence on the front store.



> Can someone guide me how to do this.
>
> Attaching how it will look in attachment.
>
> Plz Help.
>
>
>
> --
> Abhijeet Pandey
>


Re: Creating Promotion

2011-08-22 Thread pmittal.1982
Hi All,

I have just started exploring ofBiz and am planning to migrate my old
website to ofBiz platform.
I also want to have two or three categories of products on the ecommerce
main page like

"Latest Arrivals"
"Featured"

etc, cn you please tell if we have a solution to the problem raised by
Abhijeet. I tried the solution proposed by Preeti but somehow its not
working.

Thanks in advance.

Piyush

--
View this message in context: 
http://ofbiz.135035.n4.nabble.com/Creating-Promotion-tp164906p3759509.html
Sent from the OFBiz - User mailing list archive at Nabble.com.


Re: Creating Promotion

2009-09-12 Thread Abhijeet Pandey
Hi All,
I don't know if this is the right way of doing this.
if someone can look into it, it will be of great help.
For displaying 3 or more promotional categories, i made these changes -->

1) Main.groovy
*This is the only code.*
--->

import org.ofbiz.product.catalog.*;

catalogId = CatalogWorker.getCurrentCatalogId(request);
CatalogWorker.getCatalogAllPromotionsCategoryId(request, catalogId);
context.productCategoryList = request.getAttribute("productCategoryList");



2) CatalogWorker.java
*This methods i have added*
-->

public static void  getCatalogAllPromotionsCategoryId(ServletRequest
request, String prodCatalogId) {
List productCategoryDetailList =
FastList.newInstance();
List productCategoryList = FastList.newInstance();
List prodCatalogCategories =
getProdCatalogCategories(request, prodCatalogId, "PCCT_PROMOTIONS");

if (UtilValidate.isNotEmpty(prodCatalogCategories)) {
productCategoryDetailList =
EntityUtil.getAll(prodCatalogCategories);
}

for(int i=0;i<#assign
productCategoryList = requestAttributes.productCategoryList>

<#if productCategoryList?has_content>
<#list productCategoryList as productCategoryId>

 
 ${productCategoryId}
${request.setAttribute("productCategoryId", productCategoryId)}
<#if requestAttributes.productCategoryId?has_content>

${screens.render("component://ecommerce/widget/CatalogScreens.xml#category-include")}
<#else>
  ${uiLabelMap.EcommerceNoPROMOTIONCategory}




By doing this i am able to print the Id of cateories on main.flt.

but it's not able to get the products from those categories.

in short,

productCategoryId = request.getAttribute("productCategoryId") ?:
parameters.category_id;

in Category.groovy is not getting anything in request.

Plz help.

Thanks,


Abhijeet Pandey
















On Thu, Sep 10, 2009 at 6:58 PM, Abhijeet Pandey
wrote:

> I tried that but That's not working or may be i am doing someting wrong.
>
>
> Thanks,
> Abhijeet
>
>
>
>
> On Thu, Sep 10, 2009 at 4:13 PM, Jacques Le Roux <
> jacques.le.r...@les7arts.com> wrote:
>
>> Did you test Preeti Verma's answer (I did not, not even read, just to
>> check) ?
>>
>> Jacques
>>
>> From: "Abhijeet Pandey" 
>>
>>> Hi Jacques,
>>>
>>>
>>> Can you explain please ?
>>>
>>> Thanks,
>>> Abhijeet
>>>
>>> On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
>>> jacques.le.r...@les7arts.com> wrote:
>>>
>>>  Featured Group  == PROMOTIONS category
>>>>
>>>> Jacques
>>>>  - Original Message -
>>>>  From: Abhijeet Pandey
>>>>  To: user@ofbiz.apache.org
>>>>  Sent: Tuesday, September 08, 2009 12:39 PM
>>>>  Subject: Re: Creating Promotion
>>>>
>>>>
>>>>  Hi,
>>>>
>>>>  i think that is bit different from what is my requirement.
>>>>
>>>>  i need to create few Featured Group (Offer of the day, Hot Deal , Etc)
>>>> and
>>>> want to attach few products to it.
>>>>
>>>>  just like few products are shown on home page.
>>>>  from where it comes? how these products are associated to "Featured
>>>> Products"?
>>>>  How i can create more such groups and how i can show data from those
>>>> groups.
>>>>
>>>>  Not getting a way out. Any clue for the same ?
>>>>
>>>>  Attaching screen shot which will give idea what i want to do exactly.
>>>>  Plz help.
>>>>
>>>>  Thanks,
>>>>
>>>>  Abhijeet
>>>>
>>>>
>>>>  On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
>>>> vivek.mis...@hotwaxmedia.com> wrote:
>>>>
>>>>   Hello Abhijeet,
>>>>
>>>>   This link will help you to understand, how to create promotions in
>>>> OFBiz
>>>> erp.
>>>>
>>>>
>>>>
>>>> http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role
>>>>
>>>>   Thanks and Regards,
>>>>   -- Vivek Mishra
>>>>
>>>>
>>>>   Abhijeet Pandey wrote:
>>>>
>>>> Hi All,
>>>>
>>>> I want to create few Promotion ( Special offer , Offer of the day,
>>>> Hot
>>>> Deal ) etc and i want to show all these on home page .
>>>>
>>>> just like we have "Featured Products" on home page. i want to create
>>>> and show 4-5 products from above type of promotions on home page and
>>>> give a
>>>> link "Show All" which will take user to page which will have listing of
>>>> all
>>>> products which falls in that promotion.
>>>>
>>>> Can someone guide me how to do this.
>>>>
>>>> Attaching how it will look in attachment.
>>>>
>>>> Plz Help.
>>>>
>>>>
>>>>
>>>> --
>>>> Abhijeet Pandey
>>>>
>>>>
>>>>
>>>>
>>>>  --
>>>>  Abhijeet Pandey
>>>>
>>>>
>>>
>>>
>>> --
>>> Abhijeet Pandey
>>>
>>>
>>
>
>
> --
> Abhijeet Pandey
>



-- 
Abhijeet Pandey


Re: Creating Promotion

2009-09-10 Thread Abhijeet Pandey
I tried that but That's not working or may be i am doing someting wrong.


Thanks,
Abhijeet



On Thu, Sep 10, 2009 at 4:13 PM, Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Did you test Preeti Verma's answer (I did not, not even read, just to
> check) ?
>
> Jacques
>
> From: "Abhijeet Pandey" 
>
>> Hi Jacques,
>>
>>
>> Can you explain please ?
>>
>> Thanks,
>> Abhijeet
>>
>> On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
>> jacques.le.r...@les7arts.com> wrote:
>>
>>  Featured Group  == PROMOTIONS category
>>>
>>> Jacques
>>>  - Original Message -
>>>  From: Abhijeet Pandey
>>>  To: user@ofbiz.apache.org
>>>  Sent: Tuesday, September 08, 2009 12:39 PM
>>>  Subject: Re: Creating Promotion
>>>
>>>
>>>  Hi,
>>>
>>>  i think that is bit different from what is my requirement.
>>>
>>>  i need to create few Featured Group (Offer of the day, Hot Deal , Etc)
>>> and
>>> want to attach few products to it.
>>>
>>>  just like few products are shown on home page.
>>>  from where it comes? how these products are associated to "Featured
>>> Products"?
>>>  How i can create more such groups and how i can show data from those
>>> groups.
>>>
>>>  Not getting a way out. Any clue for the same ?
>>>
>>>  Attaching screen shot which will give idea what i want to do exactly.
>>>  Plz help.
>>>
>>>  Thanks,
>>>
>>>  Abhijeet
>>>
>>>
>>>  On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
>>> vivek.mis...@hotwaxmedia.com> wrote:
>>>
>>>   Hello Abhijeet,
>>>
>>>   This link will help you to understand, how to create promotions in
>>> OFBiz
>>> erp.
>>>
>>>
>>>
>>> http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role
>>>
>>>   Thanks and Regards,
>>>   -- Vivek Mishra
>>>
>>>
>>>   Abhijeet Pandey wrote:
>>>
>>> Hi All,
>>>
>>> I want to create few Promotion ( Special offer , Offer of the day,
>>> Hot
>>> Deal ) etc and i want to show all these on home page .
>>>
>>> just like we have "Featured Products" on home page. i want to create
>>> and show 4-5 products from above type of promotions on home page and give
>>> a
>>> link "Show All" which will take user to page which will have listing of
>>> all
>>> products which falls in that promotion.
>>>
>>> Can someone guide me how to do this.
>>>
>>> Attaching how it will look in attachment.
>>>
>>> Plz Help.
>>>
>>>
>>>
>>> --
>>> Abhijeet Pandey
>>>
>>>
>>>
>>>
>>>  --
>>>  Abhijeet Pandey
>>>
>>>
>>
>>
>> --
>> Abhijeet Pandey
>>
>>
>


-- 
Abhijeet Pandey


Re: Creating Promotion

2009-09-10 Thread Jacques Le Roux

Did you test Preeti Verma's answer (I did not, not even read, just to check) ?

Jacques

From: "Abhijeet Pandey" 

Hi Jacques,

Can you explain please ?

Thanks,
Abhijeet

On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:


Featured Group  == PROMOTIONS category

Jacques
  - Original Message -
 From: Abhijeet Pandey
 To: user@ofbiz.apache.org
 Sent: Tuesday, September 08, 2009 12:39 PM
 Subject: Re: Creating Promotion


 Hi,

 i think that is bit different from what is my requirement.

 i need to create few Featured Group (Offer of the day, Hot Deal , Etc) and
want to attach few products to it.

 just like few products are shown on home page.
 from where it comes? how these products are associated to "Featured
Products"?
 How i can create more such groups and how i can show data from those
groups.

 Not getting a way out. Any clue for the same ?

 Attaching screen shot which will give idea what i want to do exactly.
 Plz help.

 Thanks,

 Abhijeet


 On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
vivek.mis...@hotwaxmedia.com> wrote:

   Hello Abhijeet,

   This link will help you to understand, how to create promotions in OFBiz
erp.


http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role

   Thanks and Regards,
   -- Vivek Mishra


   Abhijeet Pandey wrote:

 Hi All,

 I want to create few Promotion ( Special offer , Offer of the day, Hot
Deal ) etc and i want to show all these on home page .

 just like we have "Featured Products" on home page. i want to create
and show 4-5 products from above type of promotions on home page and give a
link "Show All" which will take user to page which will have listing of all
products which falls in that promotion.

 Can someone guide me how to do this.

 Attaching how it will look in attachment.

 Plz Help.



 --
 Abhijeet Pandey




 --
 Abhijeet Pandey





--
Abhijeet Pandey





Re: Creating Promotion

2009-09-10 Thread Abhijeet Pandey
Ya. i able to see the products which i am associating to "Featured Products"
through the PROMOTIONS category.
but the problem is that i want to showcase different blocks of promotion .
By default ofbiz offers only one.

What if i want to show 3 different Promotion to come on my home page (
Featured Product , Deal of Day , New Arrivals) etc.

How this can be done?

Plz help.

Thanks.




On Thu, Sep 10, 2009 at 2:48 PM, Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> These products are associated to "Featured Products" through the PROMOTIONS
> category, dig in code...
>
> Jacques
>
>
> From: "Abhijeet Pandey" 
>
>  Hi Jacques,
>>
>> Can you explain please ?
>>
>> Thanks,
>> Abhijeet
>>
>> On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
>> jacques.le.r...@les7arts.com> wrote:
>>
>>  Featured Group  == PROMOTIONS category
>>>
>>> Jacques
>>>  - Original Message -
>>>  From: Abhijeet Pandey
>>>  To: user@ofbiz.apache.org
>>>  Sent: Tuesday, September 08, 2009 12:39 PM
>>>  Subject: Re: Creating Promotion
>>>
>>>
>>>  Hi,
>>>
>>>  i think that is bit different from what is my requirement.
>>>
>>>  i need to create few Featured Group (Offer of the day, Hot Deal , Etc)
>>> and
>>> want to attach few products to it.
>>>
>>>  just like few products are shown on home page.
>>>  from where it comes? how these products are associated to "Featured
>>> Products"?
>>>  How i can create more such groups and how i can show data from those
>>> groups.
>>>
>>>  Not getting a way out. Any clue for the same ?
>>>
>>>  Attaching screen shot which will give idea what i want to do exactly.
>>>  Plz help.
>>>
>>>  Thanks,
>>>
>>>  Abhijeet
>>>
>>>
>>>  On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
>>> vivek.mis...@hotwaxmedia.com> wrote:
>>>
>>>   Hello Abhijeet,
>>>
>>>   This link will help you to understand, how to create promotions in
>>> OFBiz
>>> erp.
>>>
>>>
>>>
>>> http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role
>>>
>>>   Thanks and Regards,
>>>   -- Vivek Mishra
>>>
>>>
>>>   Abhijeet Pandey wrote:
>>>
>>> Hi All,
>>>
>>> I want to create few Promotion ( Special offer , Offer of the day,
>>> Hot
>>> Deal ) etc and i want to show all these on home page .
>>>
>>> just like we have "Featured Products" on home page. i want to create
>>> and show 4-5 products from above type of promotions on home page and give
>>> a
>>> link "Show All" which will take user to page which will have listing of
>>> all
>>> products which falls in that promotion.
>>>
>>> Can someone guide me how to do this.
>>>
>>> Attaching how it will look in attachment.
>>>
>>> Plz Help.
>>>
>>>
>>>
>>> --
>>> Abhijeet Pandey
>>>
>>>
>>>
>>>
>>>  --
>>>  Abhijeet Pandey
>>>
>>>
>>
>>
>> --
>> Abhijeet Pandey
>>
>>
>


-- 
Abhijeet Pandey


Re: Creating Promotion

2009-09-10 Thread Jacques Le Roux

These products are associated to "Featured Products" through the PROMOTIONS 
category, dig in code...

Jacques


From: "Abhijeet Pandey" 

Hi Jacques,

Can you explain please ?

Thanks,
Abhijeet

On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:


Featured Group  == PROMOTIONS category

Jacques
  - Original Message -
 From: Abhijeet Pandey
 To: user@ofbiz.apache.org
 Sent: Tuesday, September 08, 2009 12:39 PM
 Subject: Re: Creating Promotion


 Hi,

 i think that is bit different from what is my requirement.

 i need to create few Featured Group (Offer of the day, Hot Deal , Etc) and
want to attach few products to it.

 just like few products are shown on home page.
 from where it comes? how these products are associated to "Featured
Products"?
 How i can create more such groups and how i can show data from those
groups.

 Not getting a way out. Any clue for the same ?

 Attaching screen shot which will give idea what i want to do exactly.
 Plz help.

 Thanks,

 Abhijeet


 On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
vivek.mis...@hotwaxmedia.com> wrote:

   Hello Abhijeet,

   This link will help you to understand, how to create promotions in OFBiz
erp.


http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role

   Thanks and Regards,
   -- Vivek Mishra


   Abhijeet Pandey wrote:

 Hi All,

 I want to create few Promotion ( Special offer , Offer of the day, Hot
Deal ) etc and i want to show all these on home page .

 just like we have "Featured Products" on home page. i want to create
and show 4-5 products from above type of promotions on home page and give a
link "Show All" which will take user to page which will have listing of all
products which falls in that promotion.

 Can someone guide me how to do this.

 Attaching how it will look in attachment.

 Plz Help.



 --
 Abhijeet Pandey




 --
 Abhijeet Pandey





--
Abhijeet Pandey





Re: Creating Promotion

2009-09-10 Thread Abhijeet Pandey
Hi Jacques,

Can you explain please ?

Thanks,
Abhijeet

On Tue, Sep 8, 2009 at 6:01 PM, Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Featured Group  == PROMOTIONS category
>
> Jacques
>   - Original Message -
>  From: Abhijeet Pandey
>  To: user@ofbiz.apache.org
>  Sent: Tuesday, September 08, 2009 12:39 PM
>  Subject: Re: Creating Promotion
>
>
>  Hi,
>
>  i think that is bit different from what is my requirement.
>
>  i need to create few Featured Group (Offer of the day, Hot Deal , Etc) and
> want to attach few products to it.
>
>  just like few products are shown on home page.
>  from where it comes? how these products are associated to "Featured
> Products"?
>  How i can create more such groups and how i can show data from those
> groups.
>
>  Not getting a way out. Any clue for the same ?
>
>  Attaching screen shot which will give idea what i want to do exactly.
>  Plz help.
>
>  Thanks,
>
>  Abhijeet
>
>
>  On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra <
> vivek.mis...@hotwaxmedia.com> wrote:
>
>Hello Abhijeet,
>
>This link will help you to understand, how to create promotions in OFBiz
> erp.
>
>
> http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role
>
>Thanks and Regards,
>-- Vivek Mishra
>
>
>Abhijeet Pandey wrote:
>
>  Hi All,
>
>  I want to create few Promotion ( Special offer , Offer of the day, Hot
> Deal ) etc and i want to show all these on home page .
>
>  just like we have "Featured Products" on home page. i want to create
> and show 4-5 products from above type of promotions on home page and give a
> link "Show All" which will take user to page which will have listing of all
> products which falls in that promotion.
>
>  Can someone guide me how to do this.
>
>  Attaching how it will look in attachment.
>
>  Plz Help.
>
>
>
>  --
>  Abhijeet Pandey
>
>
>
>
>  --
>  Abhijeet Pandey
>



-- 
Abhijeet Pandey


Re: Creating Promotion

2009-09-10 Thread Pal InfoCom Technologies

Hi All

To resolve this problem you have to go through these steps- Creating Feature
groups, Associating products to groups and then assigning these feature
groups to Promotions Category. Following are the :

Steps to Create a Feature Group 

1   Catalog Manager ---> Features
2   Select the Feature Group tab and Create  Product Feature Group


Steps to  associate products to Feature Group

1   Create a product  from Catalog Manager--->Main.
2   After creation a product idwill be assigned and tabs will appear.
3   Now click at Features tab, a page will open
4   Here under panel  'Add Product Feature From Category or Group', Choose
your featuregroup and click at Add


Steps to display the products at Homepage

1   Click at Catalog Manage --> Stores
2   Choose E-commerce Store
3   Click at Catalogs tab and choose the catalog example : Demo catalog
4   Catalog page will open here under Categories tab, choose PROMOTIONS
category
5   At Promotions category page, you will see number of tabs. here click at
Features tab
6   Now choose your Feature group from 'Apply Features From Category'

Hope this would resolve your problem

Thanks

Preeti Verma 
Configurator cum Business analyst - OFbiz Projects 
Pal Infocom Technologies Pvt. Ltd. 
Mohali - INDIA 

Abhijeet Pandey wrote:
> 
> Hi All,
> 
> I want to create few Promotion ( Special offer , Offer of the day, Hot
> Deal
> ) etc and i want to show all these on home page .
> 
> just like we have "Featured Products" on home page. i want to create and
> show 4-5 products from above type of promotions on home page and give a
> link
> "Show All" which will take user to page which will have listing of all
> products which falls in that promotion.
> 
> Can someone guide me how to do this.
> 
> Attaching how it will look in attachment.
> 
> Plz Help.
> 
> 
> 
> -- 
> Abhijeet Pandey
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Creating-Promotion-tp25342202p25379061.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Creating Promotion

2009-09-08 Thread Jacques Le Roux
Featured Group  == PROMOTIONS category

Jacques
  - Original Message - 
  From: Abhijeet Pandey 
  To: user@ofbiz.apache.org 
  Sent: Tuesday, September 08, 2009 12:39 PM
  Subject: Re: Creating Promotion


  Hi,

  i think that is bit different from what is my requirement.

  i need to create few Featured Group (Offer of the day, Hot Deal , Etc) and 
want to attach few products to it.

  just like few products are shown on home page.
  from where it comes? how these products are associated to "Featured Products"?
  How i can create more such groups and how i can show data from those groups.

  Not getting a way out. Any clue for the same ?

  Attaching screen shot which will give idea what i want to do exactly.
  Plz help.

  Thanks,

  Abhijeet 


  On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra  
wrote:

Hello Abhijeet,

This link will help you to understand, how to create promotions in OFBiz 
erp.


http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role

Thanks and Regards,
-- Vivek Mishra


Abhijeet Pandey wrote:

  Hi All,

  I want to create few Promotion ( Special offer , Offer of the day, Hot 
Deal ) etc and i want to show all these on home page .

  just like we have "Featured Products" on home page. i want to create and 
show 4-5 products from above type of promotions on home page and give a link 
"Show All" which will take user to page which will have listing of all products 
which falls in that promotion.

  Can someone guide me how to do this.

  Attaching how it will look in attachment.

  Plz Help.



  -- 
  Abhijeet Pandey




  -- 
  Abhijeet Pandey


Re: Creating Promotion

2009-09-08 Thread Abhijeet Pandey
Hi,

i think that is bit different from what is my requirement.

i need to create few Featured Group (Offer of the day, Hot Deal , Etc) and
want to attach few products to it.

just like few products are shown on home page.
from where it comes? how these products are associated to "Featured
Products"?
How i can create more such groups and how i can show data from those groups.

Not getting a way out. Any clue for the same ?

Attaching screen shot which will give idea what i want to do exactly.
Plz help.

Thanks,

Abhijeet

On Tue, Sep 8, 2009 at 2:37 PM, Vivek Mishra
wrote:

> Hello Abhijeet,
>
> This link will help you to understand, how to create promotions in OFBiz
> erp.
>
>
> http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role
>
> Thanks and Regards,
> -- Vivek Mishra
>
>
> Abhijeet Pandey wrote:
>
>> Hi All,
>>
>> I want to create few Promotion ( Special offer , Offer of the day, Hot
>> Deal ) etc and i want to show all these on home page .
>>
>> just like we have "Featured Products" on home page. i want to create and
>> show 4-5 products from above type of promotions on home page and give a link
>> "Show All" which will take user to page which will have listing of all
>> products which falls in that promotion.
>>
>> Can someone guide me how to do this.
>>
>> Attaching how it will look in attachment.
>>
>> Plz Help.
>>
>>
>>
>> --
>> Abhijeet Pandey
>>
>


-- 
Abhijeet Pandey


Re: Creating Promotion

2009-09-08 Thread Vivek Mishra

Hello Abhijeet,

This link will help you to understand, how to create promotions in OFBiz 
erp.


http://docs.ofbiz.org/display/OFBENDUSER/Product+and+Catalog+Information+Manager+Role

Thanks and Regards,
-- Vivek Mishra

Abhijeet Pandey wrote:

Hi All,

I want to create few Promotion ( Special offer , Offer of the day, Hot 
Deal ) etc and i want to show all these on home page .


just like we have "Featured Products" on home page. i want to create 
and show 4-5 products from above type of promotions on home page and 
give a link "Show All" which will take user to page which will have 
listing of all products which falls in that promotion.


Can someone guide me how to do this.

Attaching how it will look in attachment.

Plz Help.



--
Abhijeet Pandey


smime.p7s
Description: S/MIME Cryptographic Signature


Creating Promotion

2009-09-08 Thread Abhijeet Pandey
Hi All,

I want to create few Promotion ( Special offer , Offer of the day, Hot Deal
) etc and i want to show all these on home page .

just like we have "Featured Products" on home page. i want to create and
show 4-5 products from above type of promotions on home page and give a link
"Show All" which will take user to page which will have listing of all
products which falls in that promotion.

Can someone guide me how to do this.

Attaching how it will look in attachment.

Plz Help.



-- 
Abhijeet Pandey