Fixed POS parameters retrieval in cart_class
[fa-stable.git] / sales / includes / cart_class.inc
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 /* Definition of the cart class
13 this class can hold all the information for:
14
15 i)   a sales order
16 ii)  an invoice
17 iii) a credit note
18 iv)  a delivery note
19 */
20
21 include_once($path_to_root . "/inventory/includes/inventory_db.inc");
22 include_once($path_to_root . "/taxes/tax_calc.inc");
23
24 class cart
25 {
26         var $trans_type; // invoice, order, quotation, delivery note ...
27         var $trans_no = array();// array (num1=>ver1,..) or 0 for new
28         var $so_type = 0;               // for sales order: simple=0 template=1
29         var $cart_id;           // used to detect multi-tab edition conflits
30         var $line_items;  //array of objects of class line_details
31
32         var $src_docs = array();        // array of arrays(num1=>ver1,...) or 0 for no src
33         var $src_date;                  // src document date (for info only)
34
35         var $document_date;
36         var $due_date;
37         var $sales_type; // set to the customer's sales type
38         var $sales_type_name; // set to customer's sales type name
39         var $tax_included;
40
41         var $customer_currency; // set to the customer's currency
42         var $default_discount; // set to the customer's discount %
43         var $customer_name;
44         var $customer_id;
45         var $Branch;
46         var $email;
47
48         var $deliver_to;
49         var $delivery_address;
50         var $phone;
51
52         var $cust_ref;
53         var $reference;
54         var $Comments;
55         var $Location;
56         var $location_name;
57         var $order_no;          // the original order number
58         var $trans_link = 0;
59
60         var $ship_via;
61         var $freight_cost = 0;
62
63         var $tax_group_id;
64         var $tax_group_name;
65         var $tax_group_array = null; // saves db queries
66         var $price_factor;       // ditto for price calculations
67
68         var     $pos;                   // user assigned POS
69         var $cash;                      // cash transaction - helper variable not stored in db
70         var $cash_account;
71         var $account_name;
72         var $cash_discount;     // not used as of FA 2.1
73         var $dimension_id;
74         var $dimension2_id;
75         var $payment;
76         var $payment_terms; // cached payment terms
77         var $credit;
78         
79         //-------------------------------------------------------------------------
80         //
81         //  $trans_no==0 => open new/direct document
82         //  $trans_no!=0 && $no_edit==false => update with parent constarints for reedition
83         //  $trans_no!=0 && $no_edit==true => read only: for view, or later child doc entry
84         //
85         function Cart($type, $trans_no=0, $no_edit=false) {
86                 /*Constructor function initialises a new shopping cart */
87                 $this->line_items = array();
88                 $this->sales_type = "";
89                 if ($type == ST_SALESQUOTE)
90                         $this->trans_type = $type;
91                 else    
92                         $this->trans_type = ST_SALESORDER;
93                 $this->dimension_id = 0;
94                 $this->dimension2_id = 0;
95                 $this->read($type, $trans_no, $no_edit);
96                 $this->cart_id = uniqid('');
97         }
98         
99         //
100         //      Prepare cart to new child document entry, just after initial parent doc read.
101         //
102         function prepare_child()
103         {
104                 global $Refs;
105
106                 $type = get_child_type($this->trans_type);
107
108                 $this->trans_type = $type;
109                 $this->reference = $Refs->get_next($this->trans_type);
110                 $this->document_date = new_doc_date();
111
112                 for($line_no = 0; $line_no < count($this->line_items); $line_no++) {
113                         $line = &$this->line_items[$line_no];
114                         $line->src_id = $line->id; // save src line ids for update
115 //                      $line->qty_min = 0;
116 //                      $line->qty_max = $line->quantity - $line->qty_done;
117                         $line->qty_dispatched = $type == ST_CUSTCREDIT ? '0' : $line->quantity - $line->qty_done;
118                         $line->qty_old = 0;
119                 }
120                 unset($line);
121                 
122                 if ($type == ST_CUSTDELIVERY)
123                         $this->order_no = key($this->trans_no);
124
125                 if ($type == ST_SALESINVOICE) {
126                         $this->due_date = get_invoice_duedate($this->payment, $this->document_date);
127                 }
128
129                 if ($type == ST_CUSTCREDIT)
130                     $this->src_date = $this->document_date;
131
132                 $this->src_docs = $this->trans_no;
133                 $this->trans_no = 0;
134         }
135
136         //
137         //      Prepares transaction for reedition updating with parent transaction data 
138         //
139         function set_parent_constraints($sodata, $src_no) {
140
141                 $src_type = get_parent_type($this->trans_type);
142                 if ($src_type == ST_SALESORDER || $src_type == 0) { // get src data from sales_orders
143                         $this->src_docs = array( $sodata['order_no']=>$sodata['version']);
144                         $srcdetails = get_sales_order_details($this->order_no, $this->trans_type);
145                 } else {        // get src_data from debtor_trans
146                         $this->src_docs = get_customer_trans_version($src_type, 
147                                         get_parent_trans($this->trans_type, $src_no));
148                         $srcdetails = get_customer_trans_details($src_type, array_keys($this->src_docs));
149                 }
150                 // calculate & save: qtys on other docs and free qtys on src doc
151                 for($line_no = 0; $srcline = db_fetch($srcdetails); $line_no++) {
152                         $line = &$this->line_items[$line_no];
153
154                         $line->src_id = $srcline['id']; // save src line ids for update
155                         if ($this->trans_type == ST_SALESINVOICE)
156                                 $line->src_no = $srcline['debtor_trans_no'];
157                         $line->qty_old = $line->qty_dispatched = $line->quantity;
158                         $line->quantity += $srcline['quantity'] - $srcline['qty_done']; // add free qty on src doc
159                 }
160         }
161         //-------------------------------------------------------------------------
162         // Reading document into cart
163         //
164         function read($type, $trans_no = 0, $no_edit=false) {
165
166                 global $SysPrefs, $Refs;
167
168                 if (!is_array($trans_no)) $trans_no = array($trans_no);
169
170                 if ($trans_no[0]) { // read old transaction
171                         if ($type == ST_SALESORDER || $type == ST_SALESQUOTE) { // sales order || sales quotation
172                                 read_sales_order($trans_no[0], $this, $type);
173                         } else {        // other type of sales transaction
174                                         read_sales_trans($type, $trans_no, $this);
175                                         if ($this->order_no) { // free hand credit notes have no order_no
176                                                 $sodata = get_sales_order_header($this->order_no, ST_SALESORDER);
177                                                 $this->cust_ref = $sodata["customer_ref"];
178                                         // currently currency is hard linked to debtor account
179                                         //      $this->customer_currency = $sodata["curr_code"];
180                                                 $this->delivery_to = $sodata["deliver_to"];
181                                                 $this->delivery_address = $sodata["delivery_address"];
182                                         }
183                                         // child transaction reedition - update with parent info unless it is freehand
184                                         if (!$no_edit && !($type==ST_CUSTCREDIT && $this->trans_link==0))
185                                                 $this->set_parent_constraints($sodata, $trans_no[0]);
186                         }
187                         // prepare qtys for derivative document entry (not used in display)
188                         if($no_edit) {
189                                 for($line_no = 0; $line_no < count($this->line_items); $line_no++) {
190                                         $line = &$this->line_items[$line_no];
191                                         $line->src_id = $line->id; // save src line ids for update
192                                         $line->qty_dispatched = $line->quantity - $line->qty_done;
193                                 }
194                         }
195                 } else { // new document
196                                 $this->trans_type = $type;
197                                 $this->trans_no = 0;
198                                 $this->customer_currency = get_company_currency();
199                                 // set new sales document defaults here
200                                 if (get_global_customer() != ALL_TEXT)
201                                   $this->customer_id = get_global_customer();
202                                 else
203                                   $this->customer_id = '';
204                                 $this->document_date =  new_doc_date();
205                                 if (!is_date_in_fiscalyear($this->document_date))
206                                         $this->document_date = end_fiscalyear();
207                                 $this->reference = $Refs->get_next($this->trans_type);
208                                 if ($type != ST_SALESORDER && $type != ST_SALESQUOTE) // Added 2.1 Joe Hunt 2008-11-12
209                                 {
210                                         $dim = get_company_pref('use_dimension');
211                                         if ($dim > 0)
212                                         {
213                                                 if ($this->customer_id == '')
214                                                         $this->dimension_id = 0;
215                                                 else
216                                                 {
217                                                         $cust = get_customer($this->customer_id);
218                                                         $this->dimension_id = $cust['dimension_id'];
219                                                 }       
220                                                 if ($dim > 1)
221                                                 {
222                                                         if ($this->customer_id == '')
223                                                                 $this->dimension2_id = 0;
224                                                         else
225                                                                 $this->dimension2_id = $cust['dimension2_id'];
226                                                 }               
227                                         }               
228                                 }       
229                                 if ($type == ST_SALESINVOICE) {
230                                         $this->due_date =
231                                                 get_invoice_duedate($this->payment, $this->document_date);
232                                 } else
233                                         $this->due_date =
234                                                 add_days($this->document_date, $SysPrefs->default_delivery_required_by());
235                         $this->pos = user_pos();
236                         }
237                 $this->credit = get_current_cust_credit($this->customer_id);
238         }
239
240         //-------------------------------------------------------------------------
241         // Writing new/modified sales document to database.
242         // Makes parent documents for direct delivery/invoice by recurent call.
243         // $policy - 0 or 1:  writeoff/return for IV, back order/cancel for DN
244         function write($policy=0) {
245                 begin_transaction(); // prevents partial database changes in case of direct delivery/invoice
246                 if (count($this->src_docs) == 0 && ($this->trans_type == ST_SALESINVOICE || $this->trans_type == ST_CUSTDELIVERY)) {
247                         // this is direct document - first add parent
248                         $src = (PHP_VERSION<5) ? $this : clone( $this ); // make local copy of this cart
249                         $src->trans_type = get_parent_type($src->trans_type);
250                         $src->reference = 'auto';
251
252                         $src->write(1);
253                         $type = $this->trans_type;
254                         $ref = $this->reference;
255                         $date = $this->document_date;
256                         // re-read document
257                         $this->read($src->trans_type, key($src->trans_no), true);
258                         $this->document_date = $date;
259                         $this->reference = $ref;
260                         $this->trans_type = $type;
261                         $this->src_docs= $this->trans_no;
262                         $this->trans_no = 0;
263                         $this->order_no= $this->trans_type==ST_CUSTDELIVERY ? key($src->trans_no) : $src->order_no;
264                 }
265                 $this->reference = @html_entity_decode($this->reference, ENT_QUOTES);
266                 $this->Comments = @html_entity_decode($this->Comments, ENT_QUOTES);
267                 foreach($this->line_items as $lineno => $line) {
268                         $this->line_items[$lineno]->stock_id = @html_entity_decode($line->stock_id, ENT_QUOTES);
269                         $this->line_items[$lineno]->item_description = @html_entity_decode($line->item_description, ENT_QUOTES);
270                 }
271                 switch($this->trans_type) {
272                         case ST_SALESINVOICE:
273                                 $ret = write_sales_invoice($this); break;
274                         case ST_CUSTCREDIT:
275                                 $ret = write_credit_note($this, $policy); break;
276                         case ST_CUSTDELIVERY:
277                                 $ret = write_sales_delivery($this, $policy); break;
278                         case ST_SALESORDER:
279                         case ST_SALESQUOTE:
280                                 if ($this->trans_no==0) // new document
281                                         $ret = add_sales_order($this);
282                                 else
283                                         $ret = update_sales_order($this);
284                 }
285
286                 commit_transaction();
287
288                 return $ret;
289         }
290
291         function set_customer($customer_id, $customer_name, $currency, $discount, $payment, $cdiscount=0)
292         {
293                 $this->customer_name = $customer_name;
294                 $this->customer_id = $customer_id;
295                 $this->default_discount = $discount;
296                 $this->customer_currency = $currency;
297                 $this->payment = $payment;
298                 $this->payment_terms = get_payment_terms($payment);
299                 $this->cash = $this->payment_terms['cash_sale'];
300                 $this->cash_discount = $cdiscount;
301
302                 $pos = get_sales_point($this->pos);
303                 if (!$pos['cash_sale'] || !$pos['credit_sale']) 
304                         $this->pos = -1; // mark not editable payment type
305                 if ($this->cash) {
306                         $this->Location = $pos['pos_location'];
307                         $this->location_name = $pos['location_name'];
308                         $this->cash_account = $pos['pos_account'];
309                         $this->account_name = $pos['bank_account_name'];
310                 }
311                 $this->credit = get_current_cust_credit($customer_id);
312         }
313
314         function set_branch($branch_id, $tax_group_id, $tax_group_name, $phone='', $email='')
315         {
316                 $this->Branch = $branch_id;
317                 $this->phone = $phone;
318                 $this->email = $email;
319                 $this->tax_group_id = $tax_group_id;
320                 $this->tax_group_array = get_tax_group_items_as_array($tax_group_id);
321         }
322
323         function set_sales_type($sales_type, $sales_name, $tax_included=0, $factor=0)
324         {
325             $this->sales_type = $sales_type;
326             $this->sales_type_name = $sales_name;
327             $this->tax_included = $tax_included;
328             $this->price_factor = $factor;
329         }
330
331         function set_location($id, $name)
332         {
333                 $this->Location = $id;
334                 $this->location_name = $name;
335         }
336
337         function set_delivery($shipper, $destination, $address, $freight_cost=null)
338         {
339                 $this->ship_via = $shipper;
340                 $this->deliver_to = $destination;
341                 $this->delivery_address = $address;
342                 if (isset($freight_cost))
343                         $this->freight_cost = $freight_cost;
344         }
345
346         function add_to_cart($line_no, $stock_id, $qty, $price, $disc, $qty_done=0, $standard_cost=0, $description=null, $id=0, $src_no=0)
347         {
348                 $line = new line_details($stock_id, $qty, $price, $disc,
349                         $qty_done,  $standard_cost, $description, $id, $src_no);
350
351                 if ($line->valid) {
352                         $this->line_items[$line_no] = $line;
353                         return 1;
354                 } else
355                         display_error(_("You have to enter valid stock code or nonempty description"));
356                 return 0;
357         }
358
359         function update_cart_item($line_no, $qty, $price, $disc, $description="")
360         {
361                 if ($description != "")
362                         $this->line_items[$line_no]->item_description = $description;
363                 $this->line_items[$line_no]->quantity = $qty;
364                 $this->line_items[$line_no]->qty_dispatched = $qty;
365                 $this->line_items[$line_no]->price = $price;
366                 $this->line_items[$line_no]->discount_percent = $disc;
367         }
368
369         function update_add_cart_item_qty($line_no, $qty)
370         {
371                 $this->line_items[$line_no]->quantity += $qty;
372         }
373
374         function remove_from_cart($line_no)
375         {
376                 array_splice($this->line_items, $line_no, 1);
377         }
378
379         function clear_items()
380         {
381                 unset($this->line_items);
382                 $this->line_items = array();
383                 $this->sales_type = "";
384                 $this->trans_no = 0;
385                 $this->customer_id = $this->order_no = 0;
386         }
387
388         function count_items()
389         {
390                 $counter=0;
391                 foreach ($this->line_items as $line) {
392                         if ($line->quantity!=$line->qty_done) $counter++;
393                 }
394                 return $counter;
395         }
396
397         function get_items_total()
398         {
399                 $total = 0;
400
401                 foreach ($this->line_items as $ln_itm) {
402                         $price = $ln_itm->line_price();
403                         $total += round($ln_itm->quantity * $price * (1 - $ln_itm->discount_percent), 
404                            user_price_dec());
405                 }
406                 return $total;
407         }
408
409         function get_items_total_dispatch()
410         {
411                 $total = 0;
412
413                 foreach ($this->line_items as $ln_itm) {
414                         $price = $ln_itm->line_price();
415                         $total += round(($ln_itm->qty_dispatched * $price * (1 - $ln_itm->discount_percent)), 
416                            user_price_dec());
417                 }
418                 return $total;
419         }
420
421         function has_items_dispatch()
422         {
423                 foreach ($this->line_items as $ln_itm) {
424                         if ($ln_itm->qty_dispatched > 0)
425                                 return true;
426                 }
427                 return false;
428         }
429
430         function any_already_delivered()
431         {
432                 /* Checks if there have been any line item processed */
433
434                 foreach ($this->line_items as $stock_item) {
435                         if ($stock_item->qty_done !=0) {
436                                 return 1;
437                         }
438                 }
439
440                 return 0;
441
442         }
443
444         function some_already_delivered($line_no)
445         {
446                 /* Checks if there have been deliveries of a specific line item */
447                 if (isset($this->line_items[$line_no]) &&
448                         $this->line_items[$line_no]->qty_done != 0) {
449                         return 1;
450                 }
451                 return 0;
452         }
453
454         function get_taxes($shipping_cost=null)
455         {
456                 $items = array();
457                 $prices = array();
458                 if($shipping_cost==null)
459                         $shipping_cost = $this->freight_cost;
460
461                 foreach ($this->line_items as $ln_itm) {
462                         $items[] = $ln_itm->stock_id;
463                         $prices[] = round(($ln_itm->qty_dispatched *
464                                 $ln_itm->line_price()* (1 - $ln_itm->discount_percent)),  user_price_dec());
465                 }
466
467                 $taxes = get_tax_for_items($items, $prices, $shipping_cost,
468                   $this->tax_group_id, $this->tax_included,  $this->tax_group_array);
469
470     // Adjustment for swiss franken, we always have 5 rappen = 1/20 franken
471     if ($this->customer_currency == 'CHF') {
472                         $val = $taxes['1']['Value'];
473                         $val1 = (floatval((intval(round(($val*20),0)))/20));
474                         $taxes['1']['Value'] = $val1;
475                 } 
476                 return $taxes;
477         }
478
479
480         function get_tax_free_shipping()
481         {
482
483                 if ($this->tax_included==0)
484                         return $this->freight_cost;
485                 else
486                         return ($this->freight_cost - $this->get_shipping_tax());
487         }
488
489         function get_shipping_tax()
490         {
491
492                 $tax_items = get_shipping_tax_as_array();
493                 $tax_rate = 0;
494                 if ($tax_items != null) {
495                         foreach ($tax_items as $item_tax) {
496                                 $index = $item_tax['tax_type_id'];
497                                 if (isset($this->tax_group_array[$index])) {
498                                         $tax_rate += $item_tax['rate'];
499                                 }
500                         }
501                 }
502                 if($this->tax_included)
503                         return round($this->freight_cost*$tax_rate/($tax_rate+100),  user_price_dec());
504                 else
505                         return round($this->freight_cost*$tax_rate/100,  user_price_dec());
506         }
507         /*
508                 Returns transaction value including all taxes
509         */
510         function get_trans_total() {
511                 
512                 $total = $this->get_items_total() + $this->freight_cost;
513                 $dec = user_price_dec();
514                 if (!$this->tax_included ) {
515                         $total += $this->get_shipping_tax();
516                         $taxes = $this->get_taxes();
517                         foreach($taxes as $tax)
518                                 $total += round($tax['Value'], $dec);
519                 }
520
521                 return $total;
522         }
523 } /* end of class defintion */
524
525 class line_details
526 {
527         var $id;
528         var $stock_id;
529         var $item_description;
530         var $units;
531         var $mb_flag;
532         var $tax_type;
533         var $tax_type_name;
534         var $src_no;    // number of src doc for this line
535         var $src_id;
536         var $price;
537         var $discount_percent;
538         
539         var $standard_cost;
540         var $descr_editable;
541
542         var $valid; // validation in constructor
543         /*
544                 Line quantity properties in various cart create modes:
545                 
546                 view:
547                 $quantity - quantity on current document
548                 $qty_done - quantity processed on all child documents
549                 $qty_dispatched - not used
550                 $qty_old - not used
551
552                 edit:
553                 $quantity - free parent quantity including this doc (= max allowed quantity)
554                 $qty_done - qty processed on child documents (= min allowed qty)
555                 $qty_dispatched - quantity currently selected to process
556                 $qty_old - quantity processed on this document before reedition 
557
558                 new child entry (view parent followed by prepare_child() call):
559                 $quantity - max allowed quantity (get from parent)
560                 $qty_done - qty processed on other child documents
561                 $qty_dispatched - quantity currently selected to process
562                 $qty_old - 0; not used
563         */
564         var $quantity;
565         var $qty_done;
566         var $qty_dispatched;
567         var $qty_old = 0;
568
569
570         function line_details ($stock_id, $qty, $prc, $disc_percent,
571                 $qty_done, $standard_cost, $description, $id=0, $src_no=0 )
572         {
573         /* Constructor function to add a new LineDetail object with passed params */
574
575                 $this->id = $id;
576                 $this->src_no = $src_no;
577                 $item_row = get_item($stock_id);
578
579                 if (!$item_row) 
580                         return;
581                         
582                 $this->mb_flag = $item_row["mb_flag"];
583                 $this->units = $item_row["units"];
584                 $this->descr_editable = $item_row["editable"];
585                 if ($description == null || !$this->descr_editable)
586                         $this->item_description = $item_row["description"];
587                 else
588                         $this->item_description = $description;
589                 //$this->standard_cost = $item_row["material_cost"] + $item_row["labour_cost"] + $item_row["overhead_cost"];
590                 $this->tax_type = $item_row["tax_type_id"];
591                 $this->tax_type_name = $item_row["tax_type_name"];
592                 $this->stock_id = $stock_id;
593                 $this->quantity = $qty;
594                 $this->qty_dispatched = $qty;
595                 $this->price = $prc;
596                 $this->discount_percent = $disc_percent;
597                 $this->qty_done = $qty_done;
598                 $this->standard_cost = $standard_cost;
599                 $this->valid = true;
600         }
601
602         // get unit price as stated on document
603         function line_price()
604         {
605                 return $this->price;
606         }
607 }
608
609 ?>