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