i guess we need html5 for that to work. Have you considered that yet?
2 08/03/2011 03:23:59 pm
Re: time input/display ui (3 replies, posted in Modules Add-on's)
i mean something like:
function time_cells($label, $name, $value=null, $min="", $max="", $title=false,
$labparams="", $post_label="", $inparams="")
{
global $Ajax;
default_focus($name);
if ($label != null)
label_cell($label, $labparams);
echo "<td>";
if ($value === null)
$value = get_post($name);
echo "<input $inparams type=\"time\" name=\"$name\" min=\"$min\" max=\"$max\" value=\"$value\""
.($title ? " title='$title'" : '')
.">";
if ($post_label != "")
echo " " . $post_label;
echo "</td>\n";
$Ajax->addUpdate($name, $name, $value);
}
function time_row($label, $name, $value, $min, $max, $title=null, $params="", $post_label="")
{
echo "<tr><td class='label'>$label</td>";
text_cells(null, $name, $value, $min, $max, $title, $params, $post_label);
echo "</tr>\n";
}
3 08/03/2011 02:37:51 pm
Topic: time input/display ui (3 replies, posted in Modules Add-on's)
I need to manage timnng on processes, but i cant find any ui handling for time.
Could it be posible to create some like to one for dates?
date_row/cells in /includes/ui/ui_input.inc
What i mean is a kind of textbox wich has the format HHH:mm:ss validation.
regards
adrian
4 08/02/2011 10:59:27 am
Topic: share extension via fa repo (1 replies, posted in Modules Add-on's)
Hi,
wich is the best way to share a extension via your repo, so otrher could have a look if interested, and maybe contribute? I am working on a manufacturing extension wich offers posibility to manage process manufacturing.(non discrete manufacturing like chemical, cosmetic, etc.).
adrian
5 08/02/2011 01:24:26 am
Re: BOM or cost of ready production (11 replies, posted in Manufactoring)
what would be the best form to share my advances with this extension? i have done some modifications within a copy of manufacturing app, called process manufacturing and hooked from in modules folder. i would like to share my ideas so maybe someone can contribute.
adrian
6 07/30/2011 09:18:40 pm
Re: BOM or cost of ready production (11 replies, posted in Manufactoring)
Joe,
i mixed the cuestions up a little, what i am looking for is where stock_move for the components occurs. at some point the individual components wich are part of the BOM are taken out of the the inventory.
thx for your replies
adrian
7 07/30/2011 03:31:49 pm
Re: BOM or cost of ready production (11 replies, posted in Manufactoring)
Joe,
i am looking for the code where the following event (as in FAwiki) occur:
- A stock move is created for the BOM item of type Work Order Production (minus). Was earlier of type Work Order.
I can only find where the finished item stock move occurs:
In work_orders_produce_items_db.inc: add_stock_move(ST_MANURECEIVE, $details["stock_id"], $id,
$details["loc_code"], $date_, $ref, $quantity, $m_cost);
Would you be so kind and indicate to me where the BOM stock moves occurs?
thanks
adrian
8 07/30/2011 11:07:16 am
Re: BOM or cost of ready production (11 replies, posted in Manufactoring)
Ok, after a revision of the requirements i have thought of creating an extension using the Manufacturing app, but making the necesary changes to work for Process Manufacturing. I guess an extension is allowed to make database changes, is that right?
9 07/26/2011 10:20:05 pm
Re: BOM or cost of ready production (11 replies, posted in Manufactoring)
Joe,
i would like to help develop something like proposed by Eglis. Specially in process manufacturing (chemical, cosmetic, pharma, etc.) this is a very must have feature. I am talking about the yield and the real discount on inventory. i would propose something like individual post production BOM. do you think this is possible? could you give me some hints on this one?
thanks,
adrian