Commit | Line | Data |
---|---|---|
ec28d06c | 1 | <?php |
5ef6c52f TM |
2 | //TODO: Highlight fields that should be filled (and maybe even check them when submited) |
3 | //TODO: Add support for selling/disposing multiple items at once... | |
4 | //TODO: Reuse /item/$item_id/edit | |
5 | //TODO: Stop using map_unique()!!! | |
6 | //TODO: we can use empty selectbox[] if no selectboxes are shown | |
7 | ||
8 | if(!isset($status_id)) $status_id = 3; | |
9 | if(!isset($item_customer)) $item_customer = ''; | |
10 | if(!isset($hide_cols_additional)) $hide_cols_additional = array(); | |
11 | $button_label = strtoupper($ASSISTANT); | |
12 | ||
5389f01c | 13 | $hide_cols_common = array_merge($hide_cols_additional,array('status_id','item_price_in','item_serial','item_quantity','model_id','vendor_id','room_id','item_date_bought')); |
5ef6c52f | 14 | |
de77377e | 15 | switch($SUBPATH[0]) { |
ec28d06c | 16 | default: case 1: |
4ece8e80 | 17 | $serial = isset($_GET['serial']) ? htmlspecialchars($_GET['serial']) : ''; //TODO: XSS |
35916247 | 18 | echo $this->html->form("$URL/2", 'GET', array( |
4ece8e80 | 19 | array('serial',$serial,'text',false,'autofocus','item_serial:'), |
5ef6c52f TM |
20 | array('quantity','1','text',false,false,'quantity:'), |
21 | array(false,$button_label,'submit') | |
35916247 | 22 | )); |
ec28d06c TM |
23 | break; |
24 | case 2: | |
5ef6c52f TM |
25 | $item_serial = $_GET['serial']; |
26 | $item_id = $this->db->map_unique('item_serial', $item_serial, 'item_id', 'item'); | |
ec28d06c TM |
27 | |
28 | $current = $this->db->get_listing('item', $item_id, 1); | |
253705f2 | 29 | $current[$item_id]['item_author'] = $this->db->auth->get_user_id(); |
5ef6c52f TM |
30 | $forked_item = $current; |
31 | ||
32 | $model_id = $this->db->map_unique('item_serial', $item_serial, 'model_id', 'item'); | |
33 | $model_price_in = $this->db->map_unique('model_id', $model_id, 'model_price_in', 'model'); | |
34 | $model_price_out = $this->db->map_unique('model_id', $model_id, 'model_price_out', 'model'); | |
35 | ||
36 | $model_countable = $this->db->map_unique('model_id', $model_id, 'model_countable', 'model'); | |
37 | if($model_countable) { | |
38 | $current[$item_id]['status_id'] = $status_id; | |
39 | $current[$item_id]['item_customer'] = $item_customer; | |
40 | $item_quantity = 1; | |
5389f01c TM |
41 | $current[$item_id]['item_price_out'] = $model_price_out; |
42 | $current[$item_id]['item_date_sold'] = date('Y-m-d'); | |
5ef6c52f TM |
43 | $hide_cols = $hide_cols_common; |
44 | } else { | |
51630db6 | 45 | $hide_cols = array_merge($hide_cols_common,array('item_price_out','item_note','item_customer','item_date_sold','location_id')); |
5ef6c52f TM |
46 | $quantity_removed = $_GET['quantity']; |
47 | if($quantity_removed <= 0) $this->post_redirect_get("$URL_INTERNAL/1","Can't dispose non-possitive amount of items!"); | |
48 | if(!is_numeric($quantity_removed)) $quantity_removed = 1; | |
49 | $quantity_stored = $this->db->map_unique('item_serial', $item_serial, 'item_quantity', 'item', false); | |
50 | if(!is_numeric($quantity_stored)) $quantity_stored = 0; | |
51 | $item_quantity = $quantity_stored - $quantity_removed; | |
52 | ||
53 | ||
54 | echo("Stock: ".$quantity_stored."<br />Disposing/Selling: ".$quantity_removed."<br />Keeping: ".$item_quantity); | |
55 | ||
56 | $current[$item_id]['item_quantity'] = $item_quantity; | |
fbf1a4e6 TM |
57 | $current[$item_id]['item_price_in'] -= $quantity_removed * $model_price_in; |
58 | $current[$item_id]['item_price_out'] -= $quantity_removed * $model_price_out; | |
5ef6c52f TM |
59 | |
60 | $forked_item[$item_id]['item_id'] = ''; | |
61 | $forked_item[$item_id]['item_serial'] .= '@'.time(); | |
62 | $forked_item[$item_id]['status_id'] = $status_id; | |
63 | $forked_item[$item_id]['item_quantity'] = $quantity_removed; | |
64 | $forked_item[$item_id]['item_price_in'] = $quantity_removed * $model_price_in; | |
65 | $forked_item[$item_id]['item_price_out'] = $quantity_removed * $model_price_out; | |
66 | $forked_item[$item_id]['item_customer'] = $item_customer; | |
5389f01c | 67 | $forked_item[$item_id]['item_date_sold'] = date('Y-m-d'); |
5ef6c52f TM |
68 | |
69 | $forked_hide_cols = array_merge($hide_cols_common,array('item_price_out')); | |
70 | } | |
71 | ||
72 | $columns = $this->db->get_columns('item'); | |
73 | $selectbox = $this->db->columns_get_selectbox($columns, 'item'); | |
ec28d06c TM |
74 | |
75 | $action = $_SERVER['SCRIPT_NAME']."/item/$item_id/edit"; | |
5ef6c52f TM |
76 | //echo $this->html->render_insert_form('item', $columns, $selectbox, $current, $hide_cols, $action); |
77 | ||
78 | $insert_form[]=array('item', $columns, $selectbox, $current, $hide_cols, $action, false); | |
79 | if(!$model_countable) $insert_form[]=array('item', $columns, $selectbox, $forked_item, $forked_hide_cols, $action, false); | |
80 | echo $this->html->render_insert_form_multi($insert_form); | |
ec28d06c TM |
81 | break; |
82 | } |