@@ -168,7 +168,7 @@ |
||
| 168 | 168 | |
| 169 | 169 | if ($result > 0) { |
| 170 | 170 | dol_htmloutput_mesg("Notes de frais créées"); |
| 171 | - }else{ |
|
| 171 | + } else{ |
|
| 172 | 172 | dol_htmloutput_errors("Note de frais non créée"); |
| 173 | 173 | } |
| 174 | 174 | } else { |
@@ -136,12 +136,12 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | //'t.entity'=>array('label'=>$langs->trans("Entity"), 'checked'=>1, 'enabled'=>(! empty($conf->multicompany->enabled) && empty($conf->multicompany->transverse_mode))), |
| 138 | 138 | 't.datec' => array('label' => $langs->trans("DateCreationShort"), |
| 139 | - 'checked' => 0, |
|
| 140 | - 'position' => 500 |
|
| 139 | + 'checked' => 0, |
|
| 140 | + 'position' => 500 |
|
| 141 | 141 | ), |
| 142 | 142 | 't.tms' => array('label' => $langs->trans("DateModificationShort"), |
| 143 | - 'checked' => 0, |
|
| 144 | - 'position' => 500 |
|
| 143 | + 'checked' => 0, |
|
| 144 | + 'position' => 500 |
|
| 145 | 145 | ), |
| 146 | 146 | //'t.statut'=>array('label'=>$langs->trans("Status"), 'checked'=>1, 'position'=>1000), |
| 147 | 147 | ); |
@@ -149,9 +149,9 @@ discard block |
||
| 149 | 149 | if (is_array($extrafields->attribute_label) && count($extrafields->attribute_label)) { |
| 150 | 150 | foreach ($extrafields->attribute_label as $key => $val) { |
| 151 | 151 | $arrayfields["ef." . $key] = array('label' => $extrafields->attribute_label[$key], |
| 152 | - 'checked' => $extrafields->attribute_list[$key], |
|
| 153 | - 'position' => $extrafields->attribute_pos[$key], |
|
| 154 | - 'enabled' => $extrafields->attribute_perms[$key] |
|
| 152 | + 'checked' => $extrafields->attribute_list[$key], |
|
| 153 | + 'position' => $extrafields->attribute_pos[$key], |
|
| 154 | + 'enabled' => $extrafields->attribute_perms[$key] |
|
| 155 | 155 | ); |
| 156 | 156 | } |
| 157 | 157 | } |
@@ -189,10 +189,12 @@ discard block |
||
| 189 | 189 | include DOL_DOCUMENT_ROOT . '/core/actions_changeselectedfields.inc.php'; |
| 190 | 190 | |
| 191 | 191 | // Purge search criteria |
| 192 | - if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) // All tests are required to be compatible with all browsers |
|
| 192 | + if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter.x") || GETPOST("button_removefilter")) { |
|
| 193 | + // All tests are required to be compatible with all browsers |
|
| 193 | 194 | { |
| 194 | 195 | |
| 195 | 196 | $search_idBBC_vols = ''; |
| 197 | + } |
|
| 196 | 198 | $search_date = ''; |
| 197 | 199 | $search_lieuD = ''; |
| 198 | 200 | $search_lieuA = ''; |
@@ -756,7 +758,9 @@ discard block |
||
| 756 | 758 | { |
| 757 | 759 | print '<td>'.$flight->getNomUrl(0).'</td>'; |
| 758 | 760 | |
| 759 | - if (! $i) $totalarray['nbfield']++; |
|
| 761 | + if (! $i) { |
|
| 762 | + $totalarray['nbfield']++; |
|
| 763 | + } |
|
| 760 | 764 | } |
| 761 | 765 | if (! empty($arrayfields['t.date']['checked'])) |
| 762 | 766 | { |
@@ -764,104 +768,138 @@ discard block |
||
| 764 | 768 | print dol_print_date($db->jdate($obj->date), '%d-%m-%y'); |
| 765 | 769 | print '</td>'; |
| 766 | 770 | |
| 767 | - if (! $i) $totalarray['nbfield']++; |
|
| 771 | + if (! $i) { |
|
| 772 | + $totalarray['nbfield']++; |
|
| 773 | + } |
|
| 768 | 774 | } |
| 769 | 775 | if (! empty($arrayfields['t.lieuD']['checked'])) |
| 770 | 776 | { |
| 771 | 777 | print '<td>'.$obj->lieuD.'</td>'; |
| 772 | 778 | |
| 773 | - if (! $i) $totalarray['nbfield']++; |
|
| 779 | + if (! $i) { |
|
| 780 | + $totalarray['nbfield']++; |
|
| 781 | + } |
|
| 774 | 782 | } |
| 775 | 783 | if (! empty($arrayfields['t.lieuA']['checked'])) |
| 776 | 784 | { |
| 777 | 785 | print '<td>'.$obj->lieuA.'</td>'; |
| 778 | 786 | |
| 779 | - if (! $i) $totalarray['nbfield']++; |
|
| 787 | + if (! $i) { |
|
| 788 | + $totalarray['nbfield']++; |
|
| 789 | + } |
|
| 780 | 790 | } |
| 781 | 791 | if (! empty($arrayfields['t.heureD']['checked'])) |
| 782 | 792 | { |
| 783 | 793 | print '<td>'.$obj->heureD.'</td>'; |
| 784 | 794 | |
| 785 | - if (! $i) $totalarray['nbfield']++; |
|
| 795 | + if (! $i) { |
|
| 796 | + $totalarray['nbfield']++; |
|
| 797 | + } |
|
| 786 | 798 | } |
| 787 | 799 | if (! empty($arrayfields['t.heureA']['checked'])) |
| 788 | 800 | { |
| 789 | 801 | print '<td>'.$obj->heureA.'</td>'; |
| 790 | 802 | |
| 791 | - if (! $i) $totalarray['nbfield']++; |
|
| 803 | + if (! $i) { |
|
| 804 | + $totalarray['nbfield']++; |
|
| 805 | + } |
|
| 792 | 806 | } |
| 793 | 807 | if (! empty($arrayfields['t.BBC_ballons_idBBC_ballons']['checked'])) |
| 794 | 808 | { |
| 795 | 809 | print '<td>'.$obj->bal.'</td>'; |
| 796 | 810 | |
| 797 | - if (! $i) $totalarray['nbfield']++; |
|
| 811 | + if (! $i) { |
|
| 812 | + $totalarray['nbfield']++; |
|
| 813 | + } |
|
| 798 | 814 | } |
| 799 | 815 | if (! empty($arrayfields['t.nbrPax']['checked'])) |
| 800 | 816 | { |
| 801 | 817 | print '<td>'.$obj->nbrPax.'</td>'; |
| 802 | 818 | |
| 803 | - if (! $i) $totalarray['nbfield']++; |
|
| 819 | + if (! $i) { |
|
| 820 | + $totalarray['nbfield']++; |
|
| 821 | + } |
|
| 804 | 822 | } |
| 805 | 823 | if (! empty($arrayfields['t.remarque']['checked'])) |
| 806 | 824 | { |
| 807 | 825 | print '<td>'.$obj->remarque.'</td>'; |
| 808 | 826 | |
| 809 | - if (! $i) $totalarray['nbfield']++; |
|
| 827 | + if (! $i) { |
|
| 828 | + $totalarray['nbfield']++; |
|
| 829 | + } |
|
| 810 | 830 | } |
| 811 | 831 | if (! empty($arrayfields['t.incidents']['checked'])) |
| 812 | 832 | { |
| 813 | 833 | print '<td>'.$obj->incidents.'</td>'; |
| 814 | 834 | |
| 815 | - if (! $i) $totalarray['nbfield']++; |
|
| 835 | + if (! $i) { |
|
| 836 | + $totalarray['nbfield']++; |
|
| 837 | + } |
|
| 816 | 838 | } |
| 817 | 839 | if (! empty($arrayfields['t.fk_type']['checked'])) |
| 818 | 840 | { |
| 819 | 841 | print '<td>'.$obj->flight_type.'</td>'; |
| 820 | 842 | |
| 821 | - if (! $i) $totalarray['nbfield']++; |
|
| 843 | + if (! $i) { |
|
| 844 | + $totalarray['nbfield']++; |
|
| 845 | + } |
|
| 822 | 846 | } |
| 823 | 847 | if (! empty($arrayfields['t.fk_pilot']['checked'])) |
| 824 | 848 | { |
| 825 | 849 | print '<td>'.$obj->pilot.'</td>'; |
| 826 | 850 | |
| 827 | - if (! $i) $totalarray['nbfield']++; |
|
| 851 | + if (! $i) { |
|
| 852 | + $totalarray['nbfield']++; |
|
| 853 | + } |
|
| 828 | 854 | } |
| 829 | 855 | if (! empty($arrayfields['t.fk_organisateur']['checked'])) |
| 830 | 856 | { |
| 831 | 857 | print '<td>'.$obj->organisator.'</td>'; |
| 832 | 858 | |
| 833 | - if (! $i) $totalarray['nbfield']++; |
|
| 859 | + if (! $i) { |
|
| 860 | + $totalarray['nbfield']++; |
|
| 861 | + } |
|
| 834 | 862 | } |
| 835 | 863 | if (! empty($arrayfields['t.is_facture']['checked'])) |
| 836 | 864 | { |
| 837 | 865 | $flight->is_facture = $obj->is_facture; |
| 838 | 866 | print '<td>'.$flight->getLibStatut(3).'</td>'; |
| 839 | 867 | |
| 840 | - if (! $i) $totalarray['nbfield']++; |
|
| 868 | + if (! $i) { |
|
| 869 | + $totalarray['nbfield']++; |
|
| 870 | + } |
|
| 841 | 871 | } |
| 842 | 872 | if (! empty($arrayfields['t.kilometers']['checked'])) |
| 843 | 873 | { |
| 844 | 874 | print '<td>'.$obj->kilometers.'</td>'; |
| 845 | 875 | |
| 846 | - if (! $i) $totalarray['nbfield']++; |
|
| 876 | + if (! $i) { |
|
| 877 | + $totalarray['nbfield']++; |
|
| 878 | + } |
|
| 847 | 879 | } |
| 848 | 880 | if (! empty($arrayfields['t.cost']['checked'])) |
| 849 | 881 | { |
| 850 | 882 | print '<td>'.$obj->cost.'</td>'; |
| 851 | 883 | |
| 852 | - if (! $i) $totalarray['nbfield']++; |
|
| 884 | + if (! $i) { |
|
| 885 | + $totalarray['nbfield']++; |
|
| 886 | + } |
|
| 853 | 887 | } |
| 854 | 888 | if (! empty($arrayfields['t.fk_receiver']['checked'])) |
| 855 | 889 | { |
| 856 | 890 | print '<td>'.$obj->receiver.'</td>'; |
| 857 | 891 | |
| 858 | - if (! $i) $totalarray['nbfield']++; |
|
| 892 | + if (! $i) { |
|
| 893 | + $totalarray['nbfield']++; |
|
| 894 | + } |
|
| 859 | 895 | } |
| 860 | 896 | if (! empty($arrayfields['t.justif_kilometers']['checked'])) |
| 861 | 897 | { |
| 862 | 898 | print '<td>'.$obj->justif_kilometers.'</td>'; |
| 863 | 899 | |
| 864 | - if (! $i) $totalarray['nbfield']++; |
|
| 900 | + if (! $i) { |
|
| 901 | + $totalarray['nbfield']++; |
|
| 902 | + } |
|
| 865 | 903 | } |
| 866 | 904 | |
| 867 | 905 | // Extra fields |
@@ -916,9 +954,11 @@ discard block |
||
| 916 | 954 | |
| 917 | 955 | // Action column |
| 918 | 956 | print '<td class="nowrap" align="center">'; |
| 919 | - if ($massactionbutton || $massaction) // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined |
|
| 957 | + if ($massactionbutton || $massaction) { |
|
| 958 | + // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined |
|
| 920 | 959 | { |
| 921 | 960 | $selected = 0; |
| 961 | + } |
|
| 922 | 962 | if (in_array($obj->idBBC_vols, $arrayofselected)) { |
| 923 | 963 | $selected = 1; |
| 924 | 964 | } |
@@ -501,7 +501,9 @@ discard block |
||
| 501 | 501 | if ($withpicto) |
| 502 | 502 | { |
| 503 | 503 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); |
| 504 | - if ($withpicto != 2) $result.=' '; |
|
| 504 | + if ($withpicto != 2) { |
|
| 505 | + $result.=' '; |
|
| 506 | + } |
|
| 505 | 507 | } |
| 506 | 508 | $result.= $link . $this->ref . $linkend; |
| 507 | 509 | return $result; |
@@ -532,33 +534,57 @@ discard block |
||
| 532 | 534 | if ($mode == 0) |
| 533 | 535 | { |
| 534 | 536 | $prefix=''; |
| 535 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 536 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 537 | + if ($status == 1) { |
|
| 538 | + return $langs->trans('Enabled'); |
|
| 539 | + } |
|
| 540 | + if ($status == 0) { |
|
| 541 | + return $langs->trans('Disabled'); |
|
| 542 | + } |
|
| 537 | 543 | } |
| 538 | 544 | if ($mode == 1) |
| 539 | 545 | { |
| 540 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 541 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 546 | + if ($status == 1) { |
|
| 547 | + return $langs->trans('Enabled'); |
|
| 548 | + } |
|
| 549 | + if ($status == 0) { |
|
| 550 | + return $langs->trans('Disabled'); |
|
| 551 | + } |
|
| 542 | 552 | } |
| 543 | 553 | if ($mode == 2) |
| 544 | 554 | { |
| 545 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 546 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 555 | + if ($status == 1) { |
|
| 556 | + return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 557 | + } |
|
| 558 | + if ($status == 0) { |
|
| 559 | + return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 560 | + } |
|
| 547 | 561 | } |
| 548 | 562 | if ($mode == 3) |
| 549 | 563 | { |
| 550 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 551 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 564 | + if ($status == 1) { |
|
| 565 | + return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 566 | + } |
|
| 567 | + if ($status == 0) { |
|
| 568 | + return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 569 | + } |
|
| 552 | 570 | } |
| 553 | 571 | if ($mode == 4) |
| 554 | 572 | { |
| 555 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 556 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 573 | + if ($status == 1) { |
|
| 574 | + return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 575 | + } |
|
| 576 | + if ($status == 0) { |
|
| 577 | + return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 578 | + } |
|
| 557 | 579 | } |
| 558 | 580 | if ($mode == 5) |
| 559 | 581 | { |
| 560 | - if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 561 | - if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 582 | + if ($status == 1) { |
|
| 583 | + return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 584 | + } |
|
| 585 | + if ($status == 0) { |
|
| 586 | + return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 587 | + } |
|
| 562 | 588 | } |
| 563 | 589 | |
| 564 | 590 | return ""; |
@@ -41,228 +41,228 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | class Bbctypes extends CommonObject |
| 43 | 43 | { |
| 44 | - /** |
|
| 45 | - * @var string Id to identify managed objects |
|
| 46 | - */ |
|
| 47 | - public $element = 'bbctypes'; |
|
| 48 | - /** |
|
| 49 | - * @var string Name of table without prefix where object is stored |
|
| 50 | - */ |
|
| 51 | - public $table_element = 'bbc_types'; |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * @var BbctypesLine[] Lines |
|
| 55 | - */ |
|
| 56 | - public $lines = array(); |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - */ |
|
| 44 | + /** |
|
| 45 | + * @var string Id to identify managed objects |
|
| 46 | + */ |
|
| 47 | + public $element = 'bbctypes'; |
|
| 48 | + /** |
|
| 49 | + * @var string Name of table without prefix where object is stored |
|
| 50 | + */ |
|
| 51 | + public $table_element = 'bbc_types'; |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * @var BbctypesLine[] Lines |
|
| 55 | + */ |
|
| 56 | + public $lines = array(); |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + */ |
|
| 60 | 60 | |
| 61 | - public $idType; |
|
| 62 | - public $numero; |
|
| 63 | - public $nom; |
|
| 64 | - public $active; |
|
| 65 | - public $fkService; |
|
| 61 | + public $idType; |
|
| 62 | + public $numero; |
|
| 63 | + public $nom; |
|
| 64 | + public $active; |
|
| 65 | + public $fkService; |
|
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * @var Product |
| 69 | 69 | */ |
| 70 | - public $service; |
|
| 71 | - |
|
| 72 | - /** |
|
| 73 | - * Constructor |
|
| 74 | - * |
|
| 75 | - * @param DoliDb $db Database handler |
|
| 76 | - */ |
|
| 77 | - public function __construct(DoliDB $db) |
|
| 78 | - { |
|
| 79 | - $this->db = $db; |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * Create object into database |
|
| 84 | - * |
|
| 85 | - * @param User $user User that creates |
|
| 86 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 87 | - * |
|
| 88 | - * @return int <0 if KO, Id of created object if OK |
|
| 89 | - */ |
|
| 90 | - public function create(User $user, $notrigger = false) |
|
| 91 | - { |
|
| 92 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 93 | - |
|
| 94 | - $error = 0; |
|
| 95 | - |
|
| 96 | - // Clean parameters |
|
| 70 | + public $service; |
|
| 71 | + |
|
| 72 | + /** |
|
| 73 | + * Constructor |
|
| 74 | + * |
|
| 75 | + * @param DoliDb $db Database handler |
|
| 76 | + */ |
|
| 77 | + public function __construct(DoliDB $db) |
|
| 78 | + { |
|
| 79 | + $this->db = $db; |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * Create object into database |
|
| 84 | + * |
|
| 85 | + * @param User $user User that creates |
|
| 86 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 87 | + * |
|
| 88 | + * @return int <0 if KO, Id of created object if OK |
|
| 89 | + */ |
|
| 90 | + public function create(User $user, $notrigger = false) |
|
| 91 | + { |
|
| 92 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 93 | + |
|
| 94 | + $error = 0; |
|
| 95 | + |
|
| 96 | + // Clean parameters |
|
| 97 | 97 | |
| 98 | - if (isset($this->idType)) { |
|
| 99 | - $this->idType = trim($this->idType); |
|
| 100 | - } |
|
| 101 | - if (isset($this->numero)) { |
|
| 102 | - $this->numero = trim($this->numero); |
|
| 103 | - } |
|
| 104 | - if (isset($this->nom)) { |
|
| 105 | - $this->nom = trim($this->nom); |
|
| 106 | - } |
|
| 107 | - if (isset($this->active)) { |
|
| 108 | - $this->active = trim($this->active); |
|
| 109 | - } |
|
| 110 | - if (isset($this->fkService)) { |
|
| 111 | - $this->fkService = trim($this->fkService); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - |
|
| 115 | - |
|
| 116 | - // Check parameters |
|
| 117 | - // Put here code to add control on parameters values |
|
| 118 | - |
|
| 119 | - // Insert request |
|
| 120 | - $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; |
|
| 98 | + if (isset($this->idType)) { |
|
| 99 | + $this->idType = trim($this->idType); |
|
| 100 | + } |
|
| 101 | + if (isset($this->numero)) { |
|
| 102 | + $this->numero = trim($this->numero); |
|
| 103 | + } |
|
| 104 | + if (isset($this->nom)) { |
|
| 105 | + $this->nom = trim($this->nom); |
|
| 106 | + } |
|
| 107 | + if (isset($this->active)) { |
|
| 108 | + $this->active = trim($this->active); |
|
| 109 | + } |
|
| 110 | + if (isset($this->fkService)) { |
|
| 111 | + $this->fkService = trim($this->fkService); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + |
|
| 115 | + |
|
| 116 | + // Check parameters |
|
| 117 | + // Put here code to add control on parameters values |
|
| 118 | + |
|
| 119 | + // Insert request |
|
| 120 | + $sql = 'INSERT INTO ' . MAIN_DB_PREFIX . $this->table_element . '('; |
|
| 121 | 121 | |
| 122 | - $sql.= 'numero,'; |
|
| 123 | - $sql.= 'nom,'; |
|
| 124 | - $sql.= 'fkService,'; |
|
| 125 | - $sql.= 'active'; |
|
| 122 | + $sql.= 'numero,'; |
|
| 123 | + $sql.= 'nom,'; |
|
| 124 | + $sql.= 'fkService,'; |
|
| 125 | + $sql.= 'active'; |
|
| 126 | 126 | |
| 127 | 127 | |
| 128 | - $sql .= ') VALUES ('; |
|
| 128 | + $sql .= ') VALUES ('; |
|
| 129 | 129 | |
| 130 | - $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; |
|
| 131 | - $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; |
|
| 132 | - $sql .= ' '.(! isset($this->fkService)?'NULL':"'".$this->db->escape($this->fkService)."'").','; |
|
| 133 | - $sql .= ' '.(! isset($this->active)?'NULL':$this->active); |
|
| 130 | + $sql .= ' '.(! isset($this->numero)?'NULL':$this->numero).','; |
|
| 131 | + $sql .= ' '.(! isset($this->nom)?'NULL':"'".$this->db->escape($this->nom)."'").','; |
|
| 132 | + $sql .= ' '.(! isset($this->fkService)?'NULL':"'".$this->db->escape($this->fkService)."'").','; |
|
| 133 | + $sql .= ' '.(! isset($this->active)?'NULL':$this->active); |
|
| 134 | 134 | |
| 135 | 135 | |
| 136 | - $sql .= ')'; |
|
| 137 | - |
|
| 138 | - $this->db->begin(); |
|
| 139 | - |
|
| 140 | - $resql = $this->db->query($sql); |
|
| 141 | - if (!$resql) { |
|
| 142 | - $error ++; |
|
| 143 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 144 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - if (!$error) { |
|
| 148 | - $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); |
|
| 149 | - |
|
| 150 | - if (!$notrigger) { |
|
| 151 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 152 | - // want this action to call a trigger. |
|
| 153 | - |
|
| 154 | - //// Call triggers |
|
| 155 | - //$result=$this->call_trigger('MYOBJECT_CREATE',$user); |
|
| 156 | - //if ($result < 0) $error++; |
|
| 157 | - //// End call triggers |
|
| 158 | - } |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - // Commit or rollback |
|
| 162 | - if ($error) { |
|
| 163 | - $this->db->rollback(); |
|
| 164 | - |
|
| 165 | - return - 1 * $error; |
|
| 166 | - } else { |
|
| 167 | - $this->db->commit(); |
|
| 168 | - |
|
| 169 | - return $this->id; |
|
| 170 | - } |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - /** |
|
| 174 | - * Load object in memory from the database |
|
| 175 | - * |
|
| 176 | - * @param int $id Id object |
|
| 177 | - * @param string $ref Ref |
|
| 178 | - * |
|
| 179 | - * @return int <0 if KO, 0 if not found, >0 if OK |
|
| 180 | - */ |
|
| 181 | - public function fetch($id, $ref = null) |
|
| 182 | - { |
|
| 183 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 184 | - |
|
| 185 | - $sql = 'SELECT'; |
|
| 186 | - $sql .= ' t.idType,'; |
|
| 136 | + $sql .= ')'; |
|
| 137 | + |
|
| 138 | + $this->db->begin(); |
|
| 139 | + |
|
| 140 | + $resql = $this->db->query($sql); |
|
| 141 | + if (!$resql) { |
|
| 142 | + $error ++; |
|
| 143 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 144 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + if (!$error) { |
|
| 148 | + $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX . $this->table_element); |
|
| 149 | + |
|
| 150 | + if (!$notrigger) { |
|
| 151 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 152 | + // want this action to call a trigger. |
|
| 153 | + |
|
| 154 | + //// Call triggers |
|
| 155 | + //$result=$this->call_trigger('MYOBJECT_CREATE',$user); |
|
| 156 | + //if ($result < 0) $error++; |
|
| 157 | + //// End call triggers |
|
| 158 | + } |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + // Commit or rollback |
|
| 162 | + if ($error) { |
|
| 163 | + $this->db->rollback(); |
|
| 164 | + |
|
| 165 | + return - 1 * $error; |
|
| 166 | + } else { |
|
| 167 | + $this->db->commit(); |
|
| 168 | + |
|
| 169 | + return $this->id; |
|
| 170 | + } |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + /** |
|
| 174 | + * Load object in memory from the database |
|
| 175 | + * |
|
| 176 | + * @param int $id Id object |
|
| 177 | + * @param string $ref Ref |
|
| 178 | + * |
|
| 179 | + * @return int <0 if KO, 0 if not found, >0 if OK |
|
| 180 | + */ |
|
| 181 | + public function fetch($id, $ref = null) |
|
| 182 | + { |
|
| 183 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 184 | + |
|
| 185 | + $sql = 'SELECT'; |
|
| 186 | + $sql .= ' t.idType,'; |
|
| 187 | 187 | |
| 188 | - $sql .= " t.numero,"; |
|
| 189 | - $sql .= " t.nom,"; |
|
| 190 | - $sql .= " t.fkService,"; |
|
| 191 | - $sql .= " t.active"; |
|
| 188 | + $sql .= " t.numero,"; |
|
| 189 | + $sql .= " t.nom,"; |
|
| 190 | + $sql .= " t.fkService,"; |
|
| 191 | + $sql .= " t.active"; |
|
| 192 | 192 | |
| 193 | 193 | |
| 194 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; |
|
| 195 | - if (null !== $ref) { |
|
| 196 | - $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; |
|
| 197 | - } else { |
|
| 198 | - $sql .= ' WHERE t.idType = ' . $id; |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - $resql = $this->db->query($sql); |
|
| 202 | - if ($resql) { |
|
| 203 | - $numrows = $this->db->num_rows($resql); |
|
| 204 | - if ($numrows) { |
|
| 205 | - $obj = $this->db->fetch_object($resql); |
|
| 206 | - |
|
| 207 | - $this->id = $obj->idType; |
|
| 194 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element . ' as t'; |
|
| 195 | + if (null !== $ref) { |
|
| 196 | + $sql .= ' WHERE t.ref = ' . '\'' . $ref . '\''; |
|
| 197 | + } else { |
|
| 198 | + $sql .= ' WHERE t.idType = ' . $id; |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + $resql = $this->db->query($sql); |
|
| 202 | + if ($resql) { |
|
| 203 | + $numrows = $this->db->num_rows($resql); |
|
| 204 | + if ($numrows) { |
|
| 205 | + $obj = $this->db->fetch_object($resql); |
|
| 206 | + |
|
| 207 | + $this->id = $obj->idType; |
|
| 208 | 208 | |
| 209 | - $this->idType = $obj->idType; |
|
| 210 | - $this->numero = $obj->numero; |
|
| 211 | - $this->nom = $obj->nom; |
|
| 212 | - $this->fkService = $obj->fkService; |
|
| 213 | - $this->active = $obj->active; |
|
| 209 | + $this->idType = $obj->idType; |
|
| 210 | + $this->numero = $obj->numero; |
|
| 211 | + $this->nom = $obj->nom; |
|
| 212 | + $this->fkService = $obj->fkService; |
|
| 213 | + $this->active = $obj->active; |
|
| 214 | 214 | |
| 215 | - if($this->fkService){ |
|
| 215 | + if($this->fkService){ |
|
| 216 | 216 | $this->service = new Product($this->db); |
| 217 | 217 | $this->service->fetch($this->fkService); |
| 218 | 218 | } |
| 219 | - } |
|
| 220 | - $this->db->free($resql); |
|
| 221 | - |
|
| 222 | - if ($numrows) { |
|
| 223 | - return 1; |
|
| 224 | - } else { |
|
| 225 | - return 0; |
|
| 226 | - } |
|
| 227 | - } else { |
|
| 228 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 229 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 230 | - |
|
| 231 | - return - 1; |
|
| 232 | - } |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Load object in memory from the database |
|
| 237 | - * |
|
| 238 | - * @param string $sortorder Sort Order |
|
| 239 | - * @param string $sortfield Sort field |
|
| 240 | - * @param int $limit offset limit |
|
| 241 | - * @param int $offset offset limit |
|
| 242 | - * @param array $filter filter array |
|
| 243 | - * @param string $filtermode filter mode (AND or OR) |
|
| 244 | - * |
|
| 245 | - * @return int <0 if KO, >0 if OK |
|
| 246 | - */ |
|
| 247 | - public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') |
|
| 248 | - { |
|
| 249 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 250 | - |
|
| 251 | - $sql = 'SELECT'; |
|
| 252 | - $sql .= " t.idType,"; |
|
| 253 | - $sql .= " t.numero,"; |
|
| 254 | - $sql .= " t.nom,"; |
|
| 255 | - $sql .= " t.fkService,"; |
|
| 256 | - $sql .= " t.active"; |
|
| 219 | + } |
|
| 220 | + $this->db->free($resql); |
|
| 221 | + |
|
| 222 | + if ($numrows) { |
|
| 223 | + return 1; |
|
| 224 | + } else { |
|
| 225 | + return 0; |
|
| 226 | + } |
|
| 227 | + } else { |
|
| 228 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 229 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 230 | + |
|
| 231 | + return - 1; |
|
| 232 | + } |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Load object in memory from the database |
|
| 237 | + * |
|
| 238 | + * @param string $sortorder Sort Order |
|
| 239 | + * @param string $sortfield Sort field |
|
| 240 | + * @param int $limit offset limit |
|
| 241 | + * @param int $offset offset limit |
|
| 242 | + * @param array $filter filter array |
|
| 243 | + * @param string $filtermode filter mode (AND or OR) |
|
| 244 | + * |
|
| 245 | + * @return int <0 if KO, >0 if OK |
|
| 246 | + */ |
|
| 247 | + public function fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, array $filter = array(), $filtermode='AND') |
|
| 248 | + { |
|
| 249 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 250 | + |
|
| 251 | + $sql = 'SELECT'; |
|
| 252 | + $sql .= " t.idType,"; |
|
| 253 | + $sql .= " t.numero,"; |
|
| 254 | + $sql .= " t.nom,"; |
|
| 255 | + $sql .= " t.fkService,"; |
|
| 256 | + $sql .= " t.active"; |
|
| 257 | 257 | |
| 258 | 258 | |
| 259 | - $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; |
|
| 259 | + $sql .= ' FROM ' . MAIN_DB_PREFIX . $this->table_element. ' as t'; |
|
| 260 | 260 | |
| 261 | - // Manage filter |
|
| 262 | - $sqlwhere = array(); |
|
| 261 | + // Manage filter |
|
| 262 | + $sqlwhere = array(); |
|
| 263 | 263 | |
| 264 | - foreach ($filter as $key => $value) { |
|
| 265 | - if(is_string($value)){ |
|
| 264 | + foreach ($filter as $key => $value) { |
|
| 265 | + if(is_string($value)){ |
|
| 266 | 266 | $sqlwhere [] = $key . ' LIKE \'%' . $this->db->escape($value) . '%\''; |
| 267 | 267 | continue; |
| 268 | 268 | } |
@@ -273,237 +273,237 @@ discard block |
||
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - if (count($sqlwhere) > 0) { |
|
| 277 | - $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); |
|
| 278 | - } |
|
| 276 | + if (count($sqlwhere) > 0) { |
|
| 277 | + $sql .= ' WHERE ' . implode(' '.$filtermode.' ', $sqlwhere); |
|
| 278 | + } |
|
| 279 | 279 | |
| 280 | - if (!empty($sortfield)) { |
|
| 281 | - $sql .= $this->db->order($sortfield,$sortorder); |
|
| 282 | - } |
|
| 283 | - if (!empty($limit)) { |
|
| 284 | - $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 285 | - } |
|
| 286 | - $this->lines = array(); |
|
| 287 | - |
|
| 288 | - $resql = $this->db->query($sql); |
|
| 289 | - if ($resql) { |
|
| 290 | - $num = $this->db->num_rows($resql); |
|
| 291 | - |
|
| 292 | - while ($obj = $this->db->fetch_object($resql)) { |
|
| 293 | - $line = new BbctypesLine(); |
|
| 294 | - |
|
| 295 | - $line->id = $obj->idType; |
|
| 296 | - $line->idType = $obj->idType; |
|
| 297 | - $line->numero = $obj->numero; |
|
| 298 | - $line->nom = $obj->nom; |
|
| 299 | - $line->fkService = $obj->fkService; |
|
| 300 | - $line->active = $obj->active; |
|
| 301 | - |
|
| 302 | - $this->lines[$line->id] = $line; |
|
| 303 | - } |
|
| 304 | - $this->db->free($resql); |
|
| 305 | - |
|
| 306 | - return $num; |
|
| 307 | - } else { |
|
| 308 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 309 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 310 | - |
|
| 311 | - return - 1; |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - /** |
|
| 316 | - * Update object into database |
|
| 317 | - * |
|
| 318 | - * @param User $user User that modifies |
|
| 319 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 320 | - * |
|
| 321 | - * @return int <0 if KO, >0 if OK |
|
| 322 | - */ |
|
| 323 | - public function update(User $user, $notrigger = false) |
|
| 324 | - { |
|
| 325 | - $error = 0; |
|
| 326 | - |
|
| 327 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 328 | - |
|
| 329 | - // Clean parameters |
|
| 280 | + if (!empty($sortfield)) { |
|
| 281 | + $sql .= $this->db->order($sortfield,$sortorder); |
|
| 282 | + } |
|
| 283 | + if (!empty($limit)) { |
|
| 284 | + $sql .= ' ' . $this->db->plimit($limit + 1, $offset); |
|
| 285 | + } |
|
| 286 | + $this->lines = array(); |
|
| 287 | + |
|
| 288 | + $resql = $this->db->query($sql); |
|
| 289 | + if ($resql) { |
|
| 290 | + $num = $this->db->num_rows($resql); |
|
| 291 | + |
|
| 292 | + while ($obj = $this->db->fetch_object($resql)) { |
|
| 293 | + $line = new BbctypesLine(); |
|
| 294 | + |
|
| 295 | + $line->id = $obj->idType; |
|
| 296 | + $line->idType = $obj->idType; |
|
| 297 | + $line->numero = $obj->numero; |
|
| 298 | + $line->nom = $obj->nom; |
|
| 299 | + $line->fkService = $obj->fkService; |
|
| 300 | + $line->active = $obj->active; |
|
| 301 | + |
|
| 302 | + $this->lines[$line->id] = $line; |
|
| 303 | + } |
|
| 304 | + $this->db->free($resql); |
|
| 305 | + |
|
| 306 | + return $num; |
|
| 307 | + } else { |
|
| 308 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 309 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 310 | + |
|
| 311 | + return - 1; |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + /** |
|
| 316 | + * Update object into database |
|
| 317 | + * |
|
| 318 | + * @param User $user User that modifies |
|
| 319 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 320 | + * |
|
| 321 | + * @return int <0 if KO, >0 if OK |
|
| 322 | + */ |
|
| 323 | + public function update(User $user, $notrigger = false) |
|
| 324 | + { |
|
| 325 | + $error = 0; |
|
| 326 | + |
|
| 327 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 328 | + |
|
| 329 | + // Clean parameters |
|
| 330 | 330 | |
| 331 | - if (isset($this->idType)) { |
|
| 332 | - $this->idType = trim($this->idType); |
|
| 333 | - } |
|
| 334 | - if (isset($this->numero)) { |
|
| 335 | - $this->numero = trim($this->numero); |
|
| 336 | - } |
|
| 337 | - if (isset($this->nom)) { |
|
| 338 | - $this->nom = trim($this->nom); |
|
| 339 | - } |
|
| 340 | - if (isset($this->fkService)) { |
|
| 341 | - $this->fkService = trim($this->fkService); |
|
| 342 | - } |
|
| 343 | - if (isset($this->active)) { |
|
| 344 | - $this->active = trim($this->active); |
|
| 345 | - } |
|
| 331 | + if (isset($this->idType)) { |
|
| 332 | + $this->idType = trim($this->idType); |
|
| 333 | + } |
|
| 334 | + if (isset($this->numero)) { |
|
| 335 | + $this->numero = trim($this->numero); |
|
| 336 | + } |
|
| 337 | + if (isset($this->nom)) { |
|
| 338 | + $this->nom = trim($this->nom); |
|
| 339 | + } |
|
| 340 | + if (isset($this->fkService)) { |
|
| 341 | + $this->fkService = trim($this->fkService); |
|
| 342 | + } |
|
| 343 | + if (isset($this->active)) { |
|
| 344 | + $this->active = trim($this->active); |
|
| 345 | + } |
|
| 346 | 346 | |
| 347 | 347 | |
| 348 | 348 | |
| 349 | - // Check parameters |
|
| 350 | - // Put here code to add a control on parameters values |
|
| 349 | + // Check parameters |
|
| 350 | + // Put here code to add a control on parameters values |
|
| 351 | 351 | |
| 352 | - // Update request |
|
| 353 | - $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; |
|
| 352 | + // Update request |
|
| 353 | + $sql = 'UPDATE ' . MAIN_DB_PREFIX . $this->table_element . ' SET'; |
|
| 354 | 354 | |
| 355 | - $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; |
|
| 356 | - $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; |
|
| 357 | - $sql .= ' fkService = '.(isset($this->fkService)?"'".$this->db->escape($this->fkService)."'":"null").','; |
|
| 358 | - $sql .= ' active = '.(isset($this->active)?$this->active:"null"); |
|
| 355 | + $sql .= ' numero = '.(isset($this->numero)?$this->numero:"null").','; |
|
| 356 | + $sql .= ' nom = '.(isset($this->nom)?"'".$this->db->escape($this->nom)."'":"null").','; |
|
| 357 | + $sql .= ' fkService = '.(isset($this->fkService)?"'".$this->db->escape($this->fkService)."'":"null").','; |
|
| 358 | + $sql .= ' active = '.(isset($this->active)?$this->active:"null"); |
|
| 359 | 359 | |
| 360 | 360 | |
| 361 | - $sql .= ' WHERE idType=' . $this->id; |
|
| 362 | - |
|
| 363 | - $this->db->begin(); |
|
| 364 | - |
|
| 365 | - $resql = $this->db->query($sql); |
|
| 366 | - if (!$resql) { |
|
| 367 | - $error ++; |
|
| 368 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 369 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 370 | - } |
|
| 371 | - |
|
| 372 | - if (!$error && !$notrigger) { |
|
| 373 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 374 | - // want this action calls a trigger. |
|
| 375 | - |
|
| 376 | - //// Call triggers |
|
| 377 | - //$result=$this->call_trigger('MYOBJECT_MODIFY',$user); |
|
| 378 | - //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 379 | - //// End call triggers |
|
| 380 | - } |
|
| 381 | - |
|
| 382 | - // Commit or rollback |
|
| 383 | - if ($error) { |
|
| 384 | - $this->db->rollback(); |
|
| 385 | - |
|
| 386 | - return - 1 * $error; |
|
| 387 | - } else { |
|
| 388 | - $this->db->commit(); |
|
| 389 | - |
|
| 390 | - return 1; |
|
| 391 | - } |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * Delete object in database |
|
| 396 | - * |
|
| 397 | - * @param User $user User that deletes |
|
| 398 | - * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 399 | - * |
|
| 400 | - * @return int <0 if KO, >0 if OK |
|
| 401 | - */ |
|
| 402 | - public function delete(User $user, $notrigger = false) |
|
| 403 | - { |
|
| 404 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 405 | - |
|
| 406 | - $error = 0; |
|
| 407 | - |
|
| 408 | - $this->db->begin(); |
|
| 409 | - |
|
| 410 | - if (!$error) { |
|
| 411 | - if (!$notrigger) { |
|
| 412 | - // Uncomment this and change MYOBJECT to your own tag if you |
|
| 413 | - // want this action calls a trigger. |
|
| 414 | - |
|
| 415 | - //// Call triggers |
|
| 416 | - //$result=$this->call_trigger('MYOBJECT_DELETE',$user); |
|
| 417 | - //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 418 | - //// End call triggers |
|
| 419 | - } |
|
| 420 | - } |
|
| 421 | - |
|
| 422 | - if (!$error) { |
|
| 423 | - $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; |
|
| 424 | - $sql .= ' WHERE idType=' . $this->id; |
|
| 425 | - |
|
| 426 | - $resql = $this->db->query($sql); |
|
| 427 | - if (!$resql) { |
|
| 428 | - $error ++; |
|
| 429 | - $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 430 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 431 | - } |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - // Commit or rollback |
|
| 435 | - if ($error) { |
|
| 436 | - $this->db->rollback(); |
|
| 437 | - |
|
| 438 | - return - 1 * $error; |
|
| 439 | - } else { |
|
| 440 | - $this->db->commit(); |
|
| 441 | - |
|
| 442 | - return 1; |
|
| 443 | - } |
|
| 444 | - } |
|
| 445 | - |
|
| 446 | - /** |
|
| 447 | - * Load an object from its id and create a new one in database |
|
| 448 | - * |
|
| 449 | - * @param int $fromid Id of object to clone |
|
| 450 | - * |
|
| 451 | - * @return int New id of clone |
|
| 452 | - */ |
|
| 453 | - public function createFromClone($fromid) |
|
| 454 | - { |
|
| 455 | - dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 456 | - |
|
| 457 | - global $user; |
|
| 458 | - $error = 0; |
|
| 459 | - $object = new Bbctypes($this->db); |
|
| 460 | - |
|
| 461 | - $this->db->begin(); |
|
| 462 | - |
|
| 463 | - // Load source object |
|
| 464 | - $object->fetch($fromid); |
|
| 465 | - // Reset object |
|
| 466 | - $object->id = 0; |
|
| 467 | - |
|
| 468 | - // Clear fields |
|
| 469 | - // ... |
|
| 470 | - |
|
| 471 | - // Create clone |
|
| 472 | - $result = $object->create($user); |
|
| 473 | - |
|
| 474 | - // Other options |
|
| 475 | - if ($result < 0) { |
|
| 476 | - $error ++; |
|
| 477 | - $this->errors = $object->errors; |
|
| 478 | - dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 479 | - } |
|
| 480 | - |
|
| 481 | - // End |
|
| 482 | - if (!$error) { |
|
| 483 | - $this->db->commit(); |
|
| 484 | - |
|
| 485 | - return $object->id; |
|
| 486 | - } else { |
|
| 487 | - $this->db->rollback(); |
|
| 488 | - |
|
| 489 | - return - 1; |
|
| 490 | - } |
|
| 491 | - } |
|
| 492 | - |
|
| 493 | - /** |
|
| 494 | - * Return a link to the user card (with optionaly the picto) |
|
| 495 | - * Use this->id,this->lastname, this->firstname |
|
| 496 | - * |
|
| 497 | - * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) |
|
| 498 | - * @param string $option On what the link point to |
|
| 361 | + $sql .= ' WHERE idType=' . $this->id; |
|
| 362 | + |
|
| 363 | + $this->db->begin(); |
|
| 364 | + |
|
| 365 | + $resql = $this->db->query($sql); |
|
| 366 | + if (!$resql) { |
|
| 367 | + $error ++; |
|
| 368 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 369 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 370 | + } |
|
| 371 | + |
|
| 372 | + if (!$error && !$notrigger) { |
|
| 373 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 374 | + // want this action calls a trigger. |
|
| 375 | + |
|
| 376 | + //// Call triggers |
|
| 377 | + //$result=$this->call_trigger('MYOBJECT_MODIFY',$user); |
|
| 378 | + //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 379 | + //// End call triggers |
|
| 380 | + } |
|
| 381 | + |
|
| 382 | + // Commit or rollback |
|
| 383 | + if ($error) { |
|
| 384 | + $this->db->rollback(); |
|
| 385 | + |
|
| 386 | + return - 1 * $error; |
|
| 387 | + } else { |
|
| 388 | + $this->db->commit(); |
|
| 389 | + |
|
| 390 | + return 1; |
|
| 391 | + } |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * Delete object in database |
|
| 396 | + * |
|
| 397 | + * @param User $user User that deletes |
|
| 398 | + * @param bool $notrigger false=launch triggers after, true=disable triggers |
|
| 399 | + * |
|
| 400 | + * @return int <0 if KO, >0 if OK |
|
| 401 | + */ |
|
| 402 | + public function delete(User $user, $notrigger = false) |
|
| 403 | + { |
|
| 404 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 405 | + |
|
| 406 | + $error = 0; |
|
| 407 | + |
|
| 408 | + $this->db->begin(); |
|
| 409 | + |
|
| 410 | + if (!$error) { |
|
| 411 | + if (!$notrigger) { |
|
| 412 | + // Uncomment this and change MYOBJECT to your own tag if you |
|
| 413 | + // want this action calls a trigger. |
|
| 414 | + |
|
| 415 | + //// Call triggers |
|
| 416 | + //$result=$this->call_trigger('MYOBJECT_DELETE',$user); |
|
| 417 | + //if ($result < 0) { $error++; //Do also what you must do to rollback action if trigger fail} |
|
| 418 | + //// End call triggers |
|
| 419 | + } |
|
| 420 | + } |
|
| 421 | + |
|
| 422 | + if (!$error) { |
|
| 423 | + $sql = 'DELETE FROM ' . MAIN_DB_PREFIX . $this->table_element; |
|
| 424 | + $sql .= ' WHERE idType=' . $this->id; |
|
| 425 | + |
|
| 426 | + $resql = $this->db->query($sql); |
|
| 427 | + if (!$resql) { |
|
| 428 | + $error ++; |
|
| 429 | + $this->errors[] = 'Error ' . $this->db->lasterror(); |
|
| 430 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 431 | + } |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + // Commit or rollback |
|
| 435 | + if ($error) { |
|
| 436 | + $this->db->rollback(); |
|
| 437 | + |
|
| 438 | + return - 1 * $error; |
|
| 439 | + } else { |
|
| 440 | + $this->db->commit(); |
|
| 441 | + |
|
| 442 | + return 1; |
|
| 443 | + } |
|
| 444 | + } |
|
| 445 | + |
|
| 446 | + /** |
|
| 447 | + * Load an object from its id and create a new one in database |
|
| 448 | + * |
|
| 449 | + * @param int $fromid Id of object to clone |
|
| 450 | + * |
|
| 451 | + * @return int New id of clone |
|
| 452 | + */ |
|
| 453 | + public function createFromClone($fromid) |
|
| 454 | + { |
|
| 455 | + dol_syslog(__METHOD__, LOG_DEBUG); |
|
| 456 | + |
|
| 457 | + global $user; |
|
| 458 | + $error = 0; |
|
| 459 | + $object = new Bbctypes($this->db); |
|
| 460 | + |
|
| 461 | + $this->db->begin(); |
|
| 462 | + |
|
| 463 | + // Load source object |
|
| 464 | + $object->fetch($fromid); |
|
| 465 | + // Reset object |
|
| 466 | + $object->id = 0; |
|
| 467 | + |
|
| 468 | + // Clear fields |
|
| 469 | + // ... |
|
| 470 | + |
|
| 471 | + // Create clone |
|
| 472 | + $result = $object->create($user); |
|
| 473 | + |
|
| 474 | + // Other options |
|
| 475 | + if ($result < 0) { |
|
| 476 | + $error ++; |
|
| 477 | + $this->errors = $object->errors; |
|
| 478 | + dol_syslog(__METHOD__ . ' ' . join(',', $this->errors), LOG_ERR); |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + // End |
|
| 482 | + if (!$error) { |
|
| 483 | + $this->db->commit(); |
|
| 484 | + |
|
| 485 | + return $object->id; |
|
| 486 | + } else { |
|
| 487 | + $this->db->rollback(); |
|
| 488 | + |
|
| 489 | + return - 1; |
|
| 490 | + } |
|
| 491 | + } |
|
| 492 | + |
|
| 493 | + /** |
|
| 494 | + * Return a link to the user card (with optionaly the picto) |
|
| 495 | + * Use this->id,this->lastname, this->firstname |
|
| 496 | + * |
|
| 497 | + * @param int $withpicto Include picto in link (0=No picto, 1=Include picto into link, 2=Only picto) |
|
| 498 | + * @param string $option On what the link point to |
|
| 499 | 499 | * @param integer $notooltip 1=Disable tooltip |
| 500 | 500 | * @param int $maxlen Max length of visible user name |
| 501 | 501 | * @param string $morecss Add more css on link |
| 502 | - * @return string String with URL |
|
| 503 | - */ |
|
| 504 | - function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') |
|
| 505 | - { |
|
| 506 | - global $langs, $conf, $db; |
|
| 502 | + * @return string String with URL |
|
| 503 | + */ |
|
| 504 | + function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='') |
|
| 505 | + { |
|
| 506 | + global $langs, $conf, $db; |
|
| 507 | 507 | global $dolibarr_main_authentication, $dolibarr_main_demo; |
| 508 | 508 | global $menumanager; |
| 509 | 509 | |
@@ -518,93 +518,93 @@ discard block |
||
| 518 | 518 | $link = '<a href="'.DOL_URL_ROOT.'/flightlog/card.php?id='.$this->id.'"'; |
| 519 | 519 | $link.= ($notooltip?'':' title="'.dol_escape_htmltag($label, 1).'" class="classfortooltip'.($morecss?' '.$morecss:'').'"'); |
| 520 | 520 | $link.= '>'; |
| 521 | - $linkend='</a>'; |
|
| 521 | + $linkend='</a>'; |
|
| 522 | 522 | |
| 523 | 523 | if ($withpicto) |
| 524 | 524 | { |
| 525 | 525 | $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class="classfortooltip"')).$linkend); |
| 526 | 526 | if ($withpicto != 2) $result.=' '; |
| 527 | - } |
|
| 528 | - $result.= $link . $this->ref . $linkend; |
|
| 529 | - return $result; |
|
| 530 | - } |
|
| 527 | + } |
|
| 528 | + $result.= $link . $this->ref . $linkend; |
|
| 529 | + return $result; |
|
| 530 | + } |
|
| 531 | 531 | |
| 532 | - /** |
|
| 533 | - * Retourne le libelle du status d'un user (actif, inactif) |
|
| 534 | - * |
|
| 535 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 536 | - * @return string Label of status |
|
| 537 | - */ |
|
| 538 | - function getLibStatut($mode=0) |
|
| 539 | - { |
|
| 540 | - return $this->LibStatut($this->status,$mode); |
|
| 541 | - } |
|
| 542 | - |
|
| 543 | - /** |
|
| 544 | - * Renvoi le libelle d'un status donne |
|
| 545 | - * |
|
| 546 | - * @param int $status Id status |
|
| 547 | - * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 548 | - * @return string Label of status |
|
| 549 | - */ |
|
| 550 | - function LibStatut($status,$mode=0) |
|
| 551 | - { |
|
| 552 | - global $langs; |
|
| 553 | - |
|
| 554 | - if ($mode == 0) |
|
| 555 | - { |
|
| 556 | - $prefix=''; |
|
| 557 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 558 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 559 | - } |
|
| 560 | - if ($mode == 1) |
|
| 561 | - { |
|
| 562 | - if ($status == 1) return $langs->trans('Enabled'); |
|
| 563 | - if ($status == 0) return $langs->trans('Disabled'); |
|
| 564 | - } |
|
| 565 | - if ($mode == 2) |
|
| 566 | - { |
|
| 567 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 568 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 569 | - } |
|
| 570 | - if ($mode == 3) |
|
| 571 | - { |
|
| 572 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 573 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 574 | - } |
|
| 575 | - if ($mode == 4) |
|
| 576 | - { |
|
| 577 | - if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 578 | - if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 579 | - } |
|
| 580 | - if ($mode == 5) |
|
| 581 | - { |
|
| 582 | - if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 583 | - if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 584 | - } |
|
| 585 | - |
|
| 586 | - return ""; |
|
| 587 | - } |
|
| 532 | + /** |
|
| 533 | + * Retourne le libelle du status d'un user (actif, inactif) |
|
| 534 | + * |
|
| 535 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 536 | + * @return string Label of status |
|
| 537 | + */ |
|
| 538 | + function getLibStatut($mode=0) |
|
| 539 | + { |
|
| 540 | + return $this->LibStatut($this->status,$mode); |
|
| 541 | + } |
|
| 542 | + |
|
| 543 | + /** |
|
| 544 | + * Renvoi le libelle d'un status donne |
|
| 545 | + * |
|
| 546 | + * @param int $status Id status |
|
| 547 | + * @param int $mode 0=libelle long, 1=libelle court, 2=Picto + Libelle court, 3=Picto, 4=Picto + Libelle long, 5=Libelle court + Picto |
|
| 548 | + * @return string Label of status |
|
| 549 | + */ |
|
| 550 | + function LibStatut($status,$mode=0) |
|
| 551 | + { |
|
| 552 | + global $langs; |
|
| 553 | + |
|
| 554 | + if ($mode == 0) |
|
| 555 | + { |
|
| 556 | + $prefix=''; |
|
| 557 | + if ($status == 1) return $langs->trans('Enabled'); |
|
| 558 | + if ($status == 0) return $langs->trans('Disabled'); |
|
| 559 | + } |
|
| 560 | + if ($mode == 1) |
|
| 561 | + { |
|
| 562 | + if ($status == 1) return $langs->trans('Enabled'); |
|
| 563 | + if ($status == 0) return $langs->trans('Disabled'); |
|
| 564 | + } |
|
| 565 | + if ($mode == 2) |
|
| 566 | + { |
|
| 567 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 568 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 569 | + } |
|
| 570 | + if ($mode == 3) |
|
| 571 | + { |
|
| 572 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4'); |
|
| 573 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5'); |
|
| 574 | + } |
|
| 575 | + if ($mode == 4) |
|
| 576 | + { |
|
| 577 | + if ($status == 1) return img_picto($langs->trans('Enabled'),'statut4').' '.$langs->trans('Enabled'); |
|
| 578 | + if ($status == 0) return img_picto($langs->trans('Disabled'),'statut5').' '.$langs->trans('Disabled'); |
|
| 579 | + } |
|
| 580 | + if ($mode == 5) |
|
| 581 | + { |
|
| 582 | + if ($status == 1) return $langs->trans('Enabled').' '.img_picto($langs->trans('Enabled'),'statut4'); |
|
| 583 | + if ($status == 0) return $langs->trans('Disabled').' '.img_picto($langs->trans('Disabled'),'statut5'); |
|
| 584 | + } |
|
| 585 | + |
|
| 586 | + return ""; |
|
| 587 | + } |
|
| 588 | 588 | |
| 589 | 589 | |
| 590 | - /** |
|
| 591 | - * Initialise object with example values |
|
| 592 | - * Id must be 0 if object instance is a specimen |
|
| 593 | - * |
|
| 594 | - * @return void |
|
| 595 | - */ |
|
| 596 | - public function initAsSpecimen() |
|
| 597 | - { |
|
| 598 | - $this->id = 0; |
|
| 590 | + /** |
|
| 591 | + * Initialise object with example values |
|
| 592 | + * Id must be 0 if object instance is a specimen |
|
| 593 | + * |
|
| 594 | + * @return void |
|
| 595 | + */ |
|
| 596 | + public function initAsSpecimen() |
|
| 597 | + { |
|
| 598 | + $this->id = 0; |
|
| 599 | 599 | |
| 600 | - $this->idType = ''; |
|
| 601 | - $this->numero = ''; |
|
| 602 | - $this->nom = ''; |
|
| 603 | - $this->fkService = null; |
|
| 604 | - $this->active = ''; |
|
| 600 | + $this->idType = ''; |
|
| 601 | + $this->numero = ''; |
|
| 602 | + $this->nom = ''; |
|
| 603 | + $this->fkService = null; |
|
| 604 | + $this->active = ''; |
|
| 605 | 605 | |
| 606 | 606 | |
| 607 | - } |
|
| 607 | + } |
|
| 608 | 608 | |
| 609 | 609 | } |
| 610 | 610 | |
@@ -613,14 +613,14 @@ discard block |
||
| 613 | 613 | */ |
| 614 | 614 | class BbctypesLine |
| 615 | 615 | { |
| 616 | - /** |
|
| 617 | - * @var int ID |
|
| 618 | - */ |
|
| 619 | - public $id; |
|
| 620 | - |
|
| 621 | - public $idType; |
|
| 622 | - public $numero; |
|
| 623 | - public $nom; |
|
| 624 | - public $fkService; |
|
| 625 | - public $active; |
|
| 616 | + /** |
|
| 617 | + * @var int ID |
|
| 618 | + */ |
|
| 619 | + public $id; |
|
| 620 | + |
|
| 621 | + public $idType; |
|
| 622 | + public $numero; |
|
| 623 | + public $nom; |
|
| 624 | + public $fkService; |
|
| 625 | + public $active; |
|
| 626 | 626 | } |
@@ -613,9 +613,12 @@ |
||
| 613 | 613 | |
| 614 | 614 | <?php if ($year >= $currentYear || !$t1->service || !$t2->service || !$t3->service || !$t4->service || !$t5->service || !$t6->service || !$t7->service) : ?> |
| 615 | 615 | <a class="butActionRefused" href="#">Générer</a> |
| 616 | - <?php else: ?> |
|
| 616 | + <?php else { |
|
| 617 | + : ?> |
|
| 617 | 618 | <button class="butAction" type="submit">Générer</button> |
| 618 | - <?php endif; ?> |
|
| 619 | + <?php endif; |
|
| 620 | +} |
|
| 621 | +?> |
|
| 619 | 622 | |
| 620 | 623 | </form> |
| 621 | 624 | |
@@ -338,9 +338,12 @@ |
||
| 338 | 338 | |
| 339 | 339 | <?php if (!$flightProduct) : ?> |
| 340 | 340 | <a class="butActionRefused" href="#">Générer</a> |
| 341 | - <?php else: ?> |
|
| 341 | + <?php else { |
|
| 342 | + : ?> |
|
| 342 | 343 | <button class="butAction" type="submit">Générer</button> |
| 343 | - <?php endif; ?> |
|
| 344 | + <?php endif; |
|
| 345 | +} |
|
| 346 | +?> |
|
| 344 | 347 | |
| 345 | 348 | <a class="butAction" href="<?php echo DOL_URL_ROOT . '/flightlog/card.php?id=' . $flight->id; ?>">Retour au |
| 346 | 349 | vol</a> |