Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 05-07-2002 19:51:26

cybermed
Member
From: Burke Va - US
Registered: 09-06-2001
Posts: 54
Website

Default

Is there a way to Default "Use declining Balance Inventory" in each product listing from  "YES" to "NO"?

Evan

Offline

 

#2 05-08-2002 13:04:39

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19876
Website

Re: Default

Yes.  Edit the following script:

./cgi-bin/library/modules/admin_store_product.pl

In the first routine, change:

### CUT

<TR>
<TD WIDTH="150"><FONT FACE="$admin_base_font_face" SIZE="$admin_base_font_size" COLOR="$admin_base_font_color">Use Declining Balance Inventory:</FONT></TD>
<TD>

<SELECT NAME="15">

<OPTION VALUE="Y" SELECTED>Yes</OPTION>
<OPTION VALUE="N">No</OPTION>

</SELECT>

</TD>
</TR>

### CUT

to:

### CUT

<TR>
<TD WIDTH="150"><FONT FACE="$admin_base_font_face" SIZE="$admin_base_font_size" COLOR="$admin_base_font_color">Use Declining Balance Inventory:</FONT></TD>
<TD>

<SELECT NAME="15">

<OPTION VALUE="Y">Yes</OPTION>
<OPTION VALUE="N" SELECTED>No</OPTION>

</SELECT>

</TD>
</TR>

### CUT


Nick Hendler

Offline

 

Board footer