Home
last modified time | relevance | path

Searched refs:qoh (Results 1 – 25 of 156) sorted by relevance

1234567

/dports/finance/frontaccounting/frontaccounting/manufacturing/includes/db/
H A Dwork_orders_db.inc51 if ($qoh < 0)
55 $qoh = 0;
82 if ($qoh < 0)
83 $qoh = 0;
86 if ($qoh>0)
140 if ($qoh < 0)
141 $qoh = 0;
144 if ($qoh>0)
149 $labour_cost = ($qoh * $labour_cost + $costs) / $qoh;
199 $qoh = 0;
[all …]
H A Dwork_orders_quick_db.inc77 $qoh = get_qoh_on_date($stock_id);
79 if ($qoh < 0)
81 if ($qoh + $units_reqd >= 0)
/dports/finance/frontaccounting/frontaccounting/inventory/includes/
H A Dinventory_db.inc45 $qoh = get_qoh_on_date($line->stock_id, $location);
46 $qoh -= get_demand_qty($line->stock_id, $location);
47 $qoh -= get_demand_asm_qty($line->stock_id, $location);
48 $qoh -= $line->quantity;
49 if ($qoh < $loc['reorder_level'])
53 $st_num[] = $qoh - $loc['reorder_level'];
/dports/finance/frontaccounting/frontaccounting/inventory/includes/db/
H A Ditems_adjust_db.inc100 $qoh = get_qoh_on_date($stock_id);
101 if ($qoh + $quantity <= 0 && $qoh > 0) //Positive inventory turning zero/negative
113 //Reverse the inventory effect if $qoh <=0
117 -$qoh * $diff);
122 $qoh * $diff);
H A Ditems_trans_db.inc44 $qoh = get_qoh_on_date($stock_id);
50 if ($qoh > 0)
54 $value_of_change = round2($qoh * ($new_cost - $last_cost), user_price_dec());
/dports/finance/frontaccounting/frontaccounting/inventory/inquiry/
H A Dstock_status.php92 $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); variable
99 qty_cell($qoh, false, $dec);
102 qty_cell($qoh - $demand_qty, false, $dec);
/dports/devel/spark/spark-2.1.1/sql/core/src/test/resources/tpcds/
H A Dq22.sql6 avg(inv_quantity_on_hand) qoh
13 ORDER BY qoh, i_product_name, i_brand, i_class, i_category
/dports/finance/frontaccounting/frontaccounting/includes/db/
H A Dinventory_db.inc30 $qoh = $myrow[0];
31 return $qoh ? $qoh : 0;
35 * Check whether change in stock on date would not cause negative qoh in stock history.
221 $qoh = db_fetch_row($result);
223 $qty = $row[0] - $qoh[0]; //QOH prior to -ve stock is subtracted
224 $final_cost = $row[1] - $qoh[0]*$cost[0];
312 $qoh = get_qoh_on_date($stock_id);
314 if ($qoh + $quantity <= 0 && $qoh > 0) //Positive inventory turning zero/negative
320 $diff = round($qoh*get_standard_cost($stock_id) + $quantity*$standard_cost, user_price_dec());
326 //Reverse the inventory effect if $qoh <=0
/dports/textproc/miller/miller-5.10.2/docs/
H A Dcookbook.rst521 date,qoh
866 { "qoh": 29874, "rate": 1.68, "latency": 0.02 }
868 { "qoh": 1227, "rate": 1.01, "latency": 0.07 }
870 { "qoh": 56782, "rate": 1.64 }
872 { "qoh": 9876, "rate": 1.89, "latency": 0.08 }
876 { "qoh": 0, "rate": 0.40, "latency": 0.01 }
877 { "qoh": 5438, "rate": 1.56, "latency": 0.17 }
903 { "key": "qoh", "key_counts": 8 }
909 { "key": "qoh", "key_fraction": 0.666667 }
923 qoh 8
[all …]
/dports/finance/frontaccounting/frontaccounting/purchasing/includes/db/
H A Dgrn_db.inc62 $qoh = get_qoh_on_date($stock_id);
66 if ($qoh > 0)
67 $material_cost = ($qoh * $material_cost + $qty * $price_in_home_currency) / $qoh;
71 if ($qoh < 0)
73 if ($qoh + $qty >= 0)
75 $qoh = 0;
77 if ($qoh + $qty > 0)
78 $material_cost = ($qoh * $material_cost + $qty * $price_in_home_currency) / ($qoh + $qty);
H A Dinvoice_db.inc302 $qoh = get_qoh_on_date($entered_grn->item_code);
303 if ($qoh <= 0)
312 //Reverse the inventory effect if $qoh <=0
557 $qoh = get_qoh_on_date($details_row["stock_id"]);
558 if ($diff*$details_row["quantity"] !=0 && $qoh <= 0)
568 //Reverse the inventory effect if $qoh <=0
/dports/finance/frontaccounting/frontaccounting/inventory/
H A Dreorder_level.php92 $qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]); variable
98 qty_cell($qoh, false, $dec);
/dports/finance/frontaccounting/frontaccounting/manufacturing/includes/
H A Dmanufacturing_ui.inc97 $qoh = 0;
99 // if it's a non-stock item (eg. service) don't show qoh
104 $qoh = get_qoh_on_date($myrow["stock_id"], $myrow["loc_code"], $date);
106 if ($show_qoh && ($myrow["units_req"] * $quantity > $qoh) &&
128 qty_cell($qoh, false, $dec);
/dports/textproc/miller/miller-5.10.2/docs/data/
H A Dmiss-date.csv1 date,qoh
/dports/finance/frontaccounting/frontaccounting/includes/
H A Dhooks.inc206 static function default_get_dispatchable_quantity($line_item, $location, $date, $qoh) {
209 if ($SysPrefs->allow_negative_stock() || ($line_item->qty_dispatched <= $qoh)) {
212 return array($qoh, 'stockmankobg');
456 function hook_get_dispatchable_quantity($line_item, $location, $date, $qoh) {
457 …esult = hook_invoke_first('get_dispatchable_quantity', $line_item, array($location, $date, $qoh));
458 … !== null ? $result : hooks::default_get_dispatchable_quantity($line_item, $location, $date, $qoh);
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/elazarl/goproxy/
H A Dca.pem13 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
H A Dcerts.go36 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/elazarl/goproxy/
H A Dca.pem13 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
H A Dcerts.go36 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
/dports/sysutils/kubectl/kubernetes-1.22.2/vendor/github.com/elazarl/goproxy/
H A Dca.pem13 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
H A Dcerts.go36 V6WTrHyTEvT4w+lFOVN2bA/6DAIxrjBiF6DhoJqnha0SZtDfv77XpwGG3EhA/qoh
/dports/finance/weberp/webERP/
H A DMRPReport.php90 $qoh = 0; // Get quantity on Hand to display variable
94 $qoh += $myrow['supplyquantity'];
178 …$pdf->addTextWrap(410,$YPos,50,$FontSize,locale_number_format($qoh,$myrow['decimalplaces']),'right…
202 $pastdueavail = ($qoh + $PastDueSup + $pastdueplan) - $PastDueReq;
785 $qoh = 'N/A'; variable
787 $qoh = locale_number_format($myrow['qoh'], $myrow['decimalplaces']); variable
792 <td class="number">' . $qoh . '</td>
H A DSelectProduct.php856 $qoh = _('N/A'); variable
858 $qoh = locale_number_format($myrow['qoh'], $myrow['decimalplaces']); variable
890 <td class="number">' . $qoh . '</td>
/dports/print/qpdf/qpdf-10.5.0/libqpdf/
H A Dqpdf-c.cc901 new_object(qpdf_data qpdf, QPDFObjectHandle const& qoh) in new_object() argument
904 qpdf->oh_cache[oh] = new QPDFObjectHandle(qoh); in new_object()
1176 [qpdf](QPDFObjectHandle& qoh) { in qpdf_oh_wrap_in_array() argument
1177 if (qoh.isArray()) in qpdf_oh_wrap_in_array()
1180 return new_object(qpdf, qoh); in qpdf_oh_wrap_in_array()
1187 std::vector<QPDFObjectHandle>{qoh})); in qpdf_oh_wrap_in_array()
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/src/
H A Dcolvar_methods.F3438 qoh = colvar%hydronium_shell_param%qoh
3486 invden = 1.0_dp/(1.0_dp - rrel**qoh)
3490 + num*(invden)**2*qoh*(rrel**(qoh - 1)))/(drji*roh)
3494 noh(ii) = noh(ii) + REAL(poh, dp)/REAL(qoh, dp)
3495 fscalar = REAL(poh*(poh - qoh), dp)/(REAL(2*qoh, dp)*roh*drji)
3586 qm, qoh local
3601 qoh = colvar%hydronium_dist_param%qoh
3658 invden = 1.0_dp/(1.0_dp - rrel**qoh)
3662 + num*(invden)**2*qoh*(rrel**(qoh - 1)))/(drji*roh)
3666 noh(ii) = noh(ii) + REAL(poh, dp)/REAL(qoh, dp)
[all …]

1234567