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.
Is there a way to Default "Use declining Balance Inventory" in each product listing from "YES" to "NO"?
Evan
Offline
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
Offline