if ($qoh + $qty != 0)
{
if ($qoh == 0) // 27.10.2014 apmuthu and dz.
- $material_cost += $m_cost;
+ $material_cost = $m_cost;
else
$material_cost = ($qoh * $material_cost + $qty * $m_cost) / ($qoh + $qty);
}
$date = sql2date($work_order['date_']);
$result = get_work_order_productions($woid); // check the produced quantity
- $qty = 0;
while ($row = db_fetch($result))
{
void_work_order_produce($row['id']);
$result = get_work_order_issues($woid);
$cost = 0;
- $issue_no = 0;
while ($row = db_fetch($result))
{
void_work_order_issue($row['issue_no']);
$sql .= " AND workorder.required_by < '$Today' ";
}
+ $sql .= " ORDER BY workorder.id DESC";
return $sql;
}