webERP Forum

Full Version: Easier-To-Read BoM Item Selection
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
BOMS.php

When selecting Items for BoMs the dropdown uses a proportional font so the items don't line up. I forced the font to be monospace so it looks a little more tidy and is easier to read.

I changed this:
PHP Code:
echo '<select ' . (in_array('ComponentCode',$Errors) ?  'class="selecterror"' '' ) .' tabindex="1" name="Component">'

To this:
PHP Code:
echo '<select ' . (in_array('ComponentCode',$Errors) ?  'class="selecterror"' '' ) .' tabindex="1" name="Component" style="font-family:monospace">'
I never liked the idea of the drop down list for inventory. I have clients with tens of thousands of inventory items which makes a drop down list inappropriate.
I wrote the code which has an item selection the same as elsewhere in webERP which I would be happy to port over if there was a guarantee of inclusion. I don't want to spend the time and then have arguments over it being given included.

Tim
If we were on 4.15 I would gladly make some time to try to include it but we are still on 4.14.1 due to the extensive number of modifications.

I assume you have added something such as this?

[attachment=864]

If so I may take a crack at it myself...
Yes, thats what I did Smile

Tim
That would be guaranteed for inclusion!!
Ok I will get it done this weekend
Thank you Tim and Phil!
Due to the premature arrival of the newest member of the Schofield dynasty this got rather delayed, but I have now pushed it to my github repository that can be found here:

https://github.com/timschofield/webERP-svn

Apologies for the delay, but family first Smile
Congrats Tim :-)
Congratulations Tim! Very best wishes to you and to your family!
Pages: 1 2