Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Editing parameters for Bulk Update Pricing Screen

  1. #1
    webmac is offline Junior Member
    Join Date
    Feb 2010
    Posts
    16

    Default Editing parameters for Bulk Update Pricing Screen

    When I go into the admin section under products/Bulk Update Pricing to change or enter prices. I am not using the SKU, and would like to use the Mfg Part# instead. How can I edit the fields used on the Bulk Update Pricing Screen to make this happen. Using version AspDotNetStorefront ML 8.0.1.2/8.0.1.2. Thank you.
    Last edited by webmac; 02-10-2010 at 10:34 AM.

  2. #2
    webmac is offline Junior Member
    Join Date
    Feb 2010
    Posts
    16

    Default Editing parameters for Bulk Update Pricing Screen

    Another question to this would be if the filters in the Bulk Update Pricing can be edited, added, or deleted and how can this be done? Thanks.

  3. #3
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    You would need to modify the prices.aspx.cs page in the admin section. First, in RenderContents change
    Code:
    writer.Write("      <td align=\"left\" valign=\"middle\">SKU</td>\n");
    to
    Code:
    writer.Write("      <td align=\"left\" valign=\"middle\">MFG#</td>\n");
    Then further down in RenderContents change
    Code:
    writer.Write("<td>" + DB.RowField(row, "SKU") + DB.RowField(row, "SKUSuffix") + "</td>\n");
    to
    Code:
    writer.Write("<td>" + DB.RowField(row, "ManufacturerPartNumber") + DB.RowField(row, "VManufacturerPartNumber") + "</td>\n");
    We don't key off of the SKU when making the changes though, so this change is purely cosmetic (and perhaps helpful in finding the items you are looking for).

    To change the filters, you would need to modify the sql query (also in the RenderContents method...in 8.0.1.2 C# starts around line 173).
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>