ecdd3c6ce26603c3ed0fb6d8cd20db8f898b0be4
[mirrors/SokoMan.git] / assistants / sell.inc.php
1 <?php
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
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'));
14
15 switch($SUBPATH[0]) {
16 default: case 1:
17 $serial = isset($_GET['serial']) ? htmlspecialchars($_GET['serial']) : ''; //TODO: XSS
18 echo $this->html->form("$URL/2", 'GET', array(
19 array('serial',$serial,'text',false,'autofocus','item_serial:'),
20 array('quantity','1','text',false,false,'quantity:'),
21 array(false,$button_label,'submit')
22 ));
23 break;
24 case 2:
25 $item_serial = $_GET['serial'];
26 $item_id = $this->db->map_unique('item_serial', $item_serial, 'item_id', 'item');
27
28 $current = $this->db->get_listing('item', $item_id, 1);
29 $current[$item_id]['item_author'] = $this->db->auth->get_user_id();
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;
41 $current[$item_id]['item_price_out'] = $model_price_out;
42 $current[$item_id]['item_date_sold'] = date('Y-m-d');
43 $hide_cols = $hide_cols_common;
44 } else {
45 $hide_cols = array_merge($hide_cols_common,array('item_price_out','item_note','item_customer','item_date_sold','location_id'));
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;
57 $current[$item_id]['item_price_in'] -= $quantity_removed * $model_price_in;
58 $current[$item_id]['item_price_out'] -= $quantity_removed * $model_price_out;
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;
67 $forked_item[$item_id]['item_date_sold'] = date('Y-m-d');
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');
74
75 $action = $_SERVER['SCRIPT_NAME']."/item/$item_id/edit";
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);
81 break;
82 }
This page took 0.340665 seconds and 3 git commands to generate.