forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPickingListsControlled.php
87 lines (68 loc) · 3.25 KB
/
PickingListsControlled.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
include('includes/DefineCartClass.php');
include('includes/DefineSerialItems.php');
include('includes/session.php');
$Title = _('Specify Picked Controlled Items');
/* Session started in header.php for password checking and authorisation level check */
include('includes/header.php');
if (empty($_GET['identifier'])) {
/*unique session identifier to ensure that there is no conflict with other order entry sessions on the same machine */
$identifier = date('U');
} else {
$identifier = $_GET['identifier'];
}
if (isset($_GET['LineNo'])) {
$LineNo = (int) $_GET['LineNo'];
} elseif (isset($_POST['LineNo'])) {
$LineNo = (int) $_POST['LineNo'];
} else {
echo '<div class="centre">
<a href="' . $RootPath . '/PickingLists.php">' . _('Select a pick list line to process') . '</a>
</div>';
prnMsg(_('This page can only be opened if a pick list has been selected') . '. ' . _('Please do that first'), 'error');
include('includes/footer.php');
exit;
}
if (!isset($_SESSION['Items' . $identifier]) OR !isset($_SESSION['ProcessingPick'])) {
/* This page can only be called with a sales order number to invoice */
echo '<div class="centre">
<a href="' . $RootPath . '/SelectPickingLists.php">' . _('Select a a pick List to maintain') . '</a>
</div>';
prnMsg(_('This page can only be opened if a pick list has been selected'), 'error');
include('includes/footer.php');
exit;
}
/*Save some typing by referring to the line item class object in short form */
$LineItem =& $_SESSION['Items' . $identifier]->LineItems[$LineNo];
//Make sure this item is really controlled
if ($LineItem->Controlled != 1) {
echo '<div class="centre"><a href="' . $RootPath . '/PickingLists.php">' . _('Back to the Sales Order') . '</a></div>';
prnMsg(_('The line item must be defined as controlled to require input of the batch numbers or serial numbers being sold'), 'error');
include('includes/footer.php');
exit;
}
/********************************************
Get the page going....
********************************************/
echo '<div class="centre">';
echo '<br /><a href="' . $RootPath . '/PickingLists.php?identifier=' . $identifier . '">' . _('Back to Picking List') . '</a>';
echo '<br /><b>' . _('Dispatch of up to') . ' ' . locale_number_format($LineItem->Quantity - $LineItem->QtyInv, $LineItem->DecimalPlaces) . ' ' . _('Controlled items') . ' ' . $LineItem->StockID . ' - ' . $LineItem->ItemDescription . ' ' . _('on Picklist') . ' ' . $_SESSION['Items' . $identifier]->OrderNo . ' ' . _('to') . ' ' . $_SESSION['Items' . $identifier]->CustomerName . '</b></div>';
/** vars needed by InputSerialItem : **/
$StockID = $LineItem->StockID;
$RecvQty = $LineItem->Quantity - $LineItem->QtyInv;
$ItemMustExist = true;
/*Can only invoice valid batches/serial numbered items that exist */
$LocationOut = $_SESSION['Items' . $identifier]->Location;
if ($_SESSION['RequirePickingNote'] == 1) {
$OrderstoPick = $_SESSION['Items' . $identifier]->OrderNo;
} else {
unset($OrderstoPick);
}
$InOutModifier = 1;
$ShowExisting = true;
include('includes/InputSerialItems.php');
/*TotalQuantity set inside this include file from the sum of the bundles
of the item selected for dispatch */
$_SESSION['Items' . $identifier]->LineItems[$LineNo]->QtyDispatched = $TotalQuantity;
include('includes/footer.php');
?>