30require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobjectline.class.php';
44 public $element =
'inventory';
49 public $table_element =
'inventory';
54 public $picto =
'inventory';
56 const STATUS_DRAFT = 0;
57 const STATUS_VALIDATED = 1;
58 const STATUS_RECORDED = 2;
59 const STATUS_CANCELED = 9;
91 public $fields = array(
92 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'visible' => -1,
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'index' => 1,
'comment' =>
'Id',),
93 'ref' => array(
'type' =>
'varchar(64)',
'label' =>
'Ref',
'visible' => 1,
'enabled' => 1,
'position' => 10,
'notnull' => 1,
'index' => 1,
'searchall' => 1,
'comment' =>
'Reference of object',
'css' =>
'maxwidth150'),
94 'entity' => array(
'type' =>
'integer',
'label' =>
'Entity',
'visible' => 0,
'enabled' => 1,
'position' => 20,
'notnull' => 1,
'index' => 1,),
95 'title' => array(
'type' =>
'varchar(255)',
'label' =>
'Label',
'visible' => 1,
'enabled' => 1,
'position' => 25,
'css' =>
'minwidth300',
'csslist' =>
'tdoverflowmax150',
'alwayseditable' => 1),
96 'fk_warehouse' => array(
'type' =>
'integer:Entrepot:product/stock/class/entrepot.class.php',
'label' =>
'Warehouse',
'visible' => 1,
'enabled' => 1,
'position' => 30,
'index' => 1,
'help' =>
'InventoryForASpecificWarehouse',
'picto' =>
'stock',
'css' =>
'minwidth300 maxwidth500 widthcentpercentminusx',
'csslist' =>
'tdoverflowmax150'),
97 'fk_product' => array(
'type' =>
'integer:Product:product/class/product.class.php',
'label' =>
'Product',
'get_name_url_params' =>
'0::0:-1:0::1',
'visible' => 1,
'enabled' => 1,
'position' => 32,
'index' => 1,
'help' =>
'InventoryForASpecificProduct',
'picto' =>
'product',
'css' =>
'minwidth300 maxwidth500 widthcentpercentminusx',
'csslist' =>
'tdoverflowmax150'),
98 'categories_product' => array(
'type' =>
'chkbxlst:categorie:label:rowid::type=0:0:',
'label' =>
'OrProductsWithCategories',
'visible' => 3,
'enabled' => 1,
'position' => 33,
'help' =>
'',
'picto' =>
'category',
'css' =>
'minwidth300 maxwidth500 widthcentpercentminusx'),
99 'date_inventory' => array(
'type' =>
'date',
'label' =>
'DateValue',
'visible' => 1,
'enabled' =>
'getDolGlobalInt("STOCK_INVENTORY_ADD_A_VALUE_DATE")',
'position' => 35,
'csslist' =>
'nowraponall'),
100 'date_creation' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 500,
'csslist' =>
'nowraponall'),
101 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 501,
'csslist' =>
'nowraponall'),
102 'date_validation' => array(
'type' =>
'datetime',
'label' =>
'DateValidation',
'visible' => -2,
'enabled' => 1,
'position' => 502,
'csslist' =>
'nowraponall'),
103 'fk_user_creat' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserAuthor',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 510,
'foreignkey' =>
'user.rowid',
'csslist' =>
'tdoverflowmax150'),
104 'fk_user_modif' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserModif',
'enabled' => 1,
'visible' => -2,
'notnull' => -1,
'position' => 511,
'csslist' =>
'tdoverflowmax150'),
105 'fk_user_valid' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserValidation',
'visible' => -2,
'enabled' => 1,
'position' => 512,
'csslist' =>
'tdoverflowmax150'),
106 'import_key' => array(
'type' =>
'varchar(14)',
'label' =>
'ImportId',
'enabled' => 1,
'visible' => -2,
'notnull' => -1,
'index' => 0,
'position' => 1000),
107 'status' => array(
'type' =>
'integer',
'label' =>
'Status',
'visible' => 4,
'enabled' => 1,
'position' => 1000,
'notnull' => 1,
'default' =>
'0',
'index' => 1,
'arrayofkeyval' => array(0 =>
'Draft', 1 =>
'Validated', 2 =>
'Closed', 9 =>
'Canceled'))
123 public $fk_warehouse;
133 public $categories_product;
137 public $date_inventory;
151 public $fk_user_creat;
156 public $fk_user_modif;
161 public $fk_user_valid;
176 public $table_element_line =
'inventorydet';
181 public $fk_element =
'fk_inventory';
186 public $class_element_line =
'Inventoryline';
191 protected $childtables = array();
195 protected $childtablesoncascade = array(
'inventorydet');
200 public $lines = array();
213 $this->ismultientitymanaged = 1;
214 $this->isextrafieldmanaged = 0;
217 $this->fields[
'rowid'][
'visible'] = 0;
220 $this->fields[
'entity'][
'enabled'] = 0;
247 public function validate(
User $user, $notrigger = 0, $include_sub_warehouse = 0)
253 if ($this->
status == self::STATUS_DRAFT) {
255 $sql =
'DELETE FROM '.$this->db->prefix().
'inventorydet WHERE fk_inventory = '.((int) $this->
id);
256 $resql = $this->db->query($sql);
258 $this->error = $this->db->lasterror();
259 $this->db->rollback();
264 $sql =
"SELECT ps.rowid, ps.fk_entrepot as fk_warehouse, ps.fk_product, ps.reel,";
266 $sql .=
" COALESCE(pb.batch, '') as batch, pb.qty as qty,";
268 $sql .=
" '' as batch, 0 as qty,";
270 $sql .=
" p.ref, p.tobatch";
271 $sql .=
" FROM ".$this->db->prefix().
"product_stock as ps";
273 $sql .=
" LEFT JOIN ".$this->db->prefix().
"product_batch as pb ON pb.fk_product_stock = ps.rowid";
275 $sql .=
", ".$this->db->prefix().
"product as p, ".$this->db->prefix().
"entrepot as e";
276 $sql .=
" WHERE p.entity IN (".getEntity(
'product').
")";
277 $sql .=
" AND ps.fk_product = p.rowid AND ps.fk_entrepot = e.rowid";
279 $sql .=
" AND p.fk_product_type = 0";
281 if ($this->fk_product > 0) {
282 $sql .=
" AND ps.fk_product = ".((int) $this->fk_product);
284 if ($this->fk_warehouse > 0) {
285 $sql .=
" AND (ps.fk_entrepot = ".((int) $this->fk_warehouse);
286 if (!empty($include_sub_warehouse) &&
getDolGlobalInt(
'INVENTORY_INCLUDE_SUB_WAREHOUSE')) {
287 $TChildWarehouses = array();
289 if (!empty($TChildWarehouses)) {
290 $sql .=
" OR ps.fk_entrepot IN (" . $this->db->sanitize(implode(
',', $TChildWarehouses)) .
")";
295 if (!empty($this->categories_product)) {
296 $sql .=
" AND EXISTS (";
297 $sql .=
" SELECT cp.fk_product";
298 $sql .=
" FROM ".$this->db->prefix().
"categorie_product AS cp";
299 $sql .=
" WHERE cp.fk_product = ps.fk_product";
300 $sql .=
" AND cp.fk_categorie IN (".$this->db->sanitize($this->categories_product).
")";
304 $sql .=
" AND NOT EXISTS (";
305 $sql .=
" SELECT pa.rowid";
306 $sql .=
" FROM ".$this->db->prefix().
"product_association as pa";
307 $sql .=
" WHERE pa.fk_product_pere = ps.fk_product";
310 $sql .=
" ORDER BY p.rowid";
314 $resql = $this->db->query($sql);
316 $num = $this->db->num_rows($resql);
320 $obj = $this->db->fetch_object($resql);
322 $inventoryline->fk_inventory = $this->id;
323 $inventoryline->fk_warehouse = $obj->fk_warehouse;
324 $inventoryline->fk_product = $obj->fk_product;
325 $inventoryline->batch = $obj->batch;
326 $inventoryline->datec =
dol_now();
329 if ($obj->batch && empty($obj->tobatch)) {
332 $this->error =
'The product ID='.$obj->ref.
" has stock with lot/serial but is configured to not manage lot/serial. You must first fix this, this way: Set the product to have 'Management of Lot/Serial' to Yes, then set it back to 'Management of Lot/Serial to No";
336 $inventoryline->qty_stock = ($obj->batch ? $obj->qty : $obj->reel);
338 $inventoryline->qty_stock = $obj->reel;
342 $resultline = $inventoryline->create($user);
343 if ($resultline <= 0) {
344 $this->error = $inventoryline->error;
345 $this->errors = $inventoryline->errors;
354 $this->error = $this->db->lasterror();
359 $result = $this->
setStatut($this::STATUS_VALIDATED,
null,
'',
'INVENTORY_VALIDATED');
365 $this->db->rollback();
382 $sql =
'DELETE FROM '.$this->db->prefix().
'inventorydet WHERE fk_inventory = '.((int) $this->
id);
383 $resql = $this->db->query($sql);
385 $this->error = $this->db->lasterror();
386 $this->db->rollback();
390 $result = $this->
setStatut($this::STATUS_DRAFT,
null,
'',
'INVENTORY_DRAFT');
395 $this->db->rollback();
411 $result = $this->
setStatut($this::STATUS_RECORDED,
null,
'',
'INVENTORY_RECORDED');
416 $this->db->rollback();
433 $result = $this->
setStatut($this::STATUS_CANCELED,
null,
'',
'INVENTORY_CANCELED');
438 $this->db->rollback();
471 $object->ref =
"copy_of_".$object->ref;
476 $object->context[
'createfromclone'] =
'createfromclone';
477 $result =
$object->createCommon($user);
483 unset(
$object->context[
'createfromclone']);
490 $this->db->rollback();
502 public function fetch($id, $ref =
null)
542 public function delete(
User $user, $notrigger = 0)
558 $this->error =
'ErrorDeleteLineNotAllowedByObjectStatus';
575 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = -1)
577 global
$conf, $langs;
579 if (!empty(
$conf->dol_no_mouse_hover)) {
585 $label =
'<u>'.$langs->trans(
"Inventory").
'</u>';
587 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
589 $url =
dol_buildpath(
'/product/inventory/card.php', 1).
'?id='.$this->id;
592 if (empty($notooltip)) {
594 $label = $langs->trans(
"ShowInventory");
595 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
597 $linkclose .=
' title="'.dolPrintHTMLForAttribute($label).
'"';
598 $linkclose .=
' class="classfortooltip'.($morecss ?
' '.$morecss :
'').
'"';
600 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
603 $linkstart =
'<a href="'.$url.
'"';
604 $linkstart .= $linkclose.
'>';
607 $result .= $linkstart;
609 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'classfortooltip"'), 0, 0, $notooltip ? 0 : 1);
611 if ($withpicto != 2) {
612 $result .= $this->ref;
642 global $langs, $hookmanager;
644 $labelStatus = array();
645 $labelStatusShort = array();
646 $labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
647 $labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Validated').
' ('.$langs->transnoentitiesnoconv(
'InventoryStartedShort').
')';
648 $labelStatus[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Canceled');
649 $labelStatus[self::STATUS_RECORDED] = $langs->transnoentitiesnoconv(
'Closed');
650 $labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Draft');
651 $labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'InventoryStartedShort');
652 $labelStatusShort[self::STATUS_CANCELED] = $langs->transnoentitiesnoconv(
'Canceled');
653 $labelStatusShort[self::STATUS_RECORDED] = $langs->transnoentitiesnoconv(
'Closed');
655 $statusType =
'status'.$status;
656 if ($status == self::STATUS_RECORDED) {
657 $statusType =
'status6';
660 $parameters = array(
'status' => $status,
'mode' => $mode);
661 $reshook = $hookmanager->executeHooks(
'LibStatut', $parameters, $this);
663 return $hookmanager->resPrint;
665 return dolGetStatus($labelStatus[$status], $labelStatusShort[$status],
'', $statusType, $mode);
677 global
$conf, $langs;
679 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
681 $return =
'<div class="box-flex-item box-flex-grow-zero">';
682 $return .=
'<div class="info-box info-box-sm">';
683 $return .=
'<span class="info-box-icon bg-infobox-action">';
685 $return .=
'</span>';
686 $return .=
'<div class="info-box-content">';
687 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this,
'getNomUrl') ? $this->
getNomUrl() : $this->ref).
'</span>';
688 if ($selected >= 0) {
689 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
691 if (property_exists($this,
'label')) {
692 $return .=
' <div class="inline-block opacitymedium valignmiddle tdoverflowmax100">'.$this->label.
'</div>';
694 if (property_exists($this,
'amount')) {
696 $return .=
'<span class="info-box-label amount">'.price($this->
amount, 0, $langs, 1, -1, -1,
$conf->currency).
'</span>';
698 if (method_exists($this,
'getLibStatut')) {
699 $return .=
'<br><div class="info-box-status">'.$this->getLibStatut(3).
'</div>';
716 $sql =
"SELECT rowid, date_creation as datec, tms as datem, date_validation as datev,";
717 $sql .=
" fk_user_creat, fk_user_modif, fk_user_valid";
718 $sql .=
" FROM ".$this->db->prefix().$this->table_element.
" as t";
719 $sql .=
" WHERE t.rowid = ".((int) $id);
720 $result = $this->db->query($sql);
722 if ($this->db->num_rows($result)) {
723 $obj = $this->db->fetch_object($result);
725 $this->
id = $obj->rowid;
727 $this->user_creation_id = $obj->fk_user_creat;
728 $this->user_modification_id = $obj->fk_user_modif;
729 $this->user_validation_id = $obj->fk_user_valid;
731 $this->date_creation = $this->db->jdate($obj->datec);
732 $this->date_modification = $this->db->jdate($obj->datem);
733 $this->date_validation = $this->db->jdate($obj->datev);
736 $this->db->free($result);
765 $sql =
'SELECT rowid FROM '.MAIN_DB_PREFIX.
'entrepot';
766 $sql .=
' WHERE fk_parent='.(int) $id;
767 $sql .=
' ORDER BY rowid';
768 $resql = $this->db->query($sql);
769 if ($resql && $this->db->num_rows($resql) > 0) {
770 while ($obj = $this->db->fetch_object($resql)) {
771 $TChildWarehouse[] = $obj->rowid;
789 public $element =
'inventoryline';
794 public $table_element =
'inventorydet';
809 public $picto =
'stock';
832 public $fields = array(
833 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'visible' => -1,
'enabled' => 1,
'position' => 1,
'notnull' => 1,
'index' => 1,
'comment' =>
'Id',),
834 'fk_inventory' => array(
'type' =>
'integer:Inventory:product/inventory/class/inventory.class.php',
'label' =>
'Inventory',
'visible' => 1,
'enabled' => 1,
'position' => 30,
'index' => 1,
'help' =>
'LinkToInventory'),
835 'fk_warehouse' => array(
'type' =>
'integer:Entrepot:product/stock/class/entrepot.class.php',
'label' =>
'Warehouse',
'visible' => 1,
'enabled' => 1,
'position' => 30,
'index' => 1,
'help' =>
'LinkToThirdparty'),
836 'fk_product' => array(
'type' =>
'integer:Product:product/class/product.class.php',
'label' =>
'Product',
'visible' => 1,
'enabled' => 1,
'position' => 32,
'index' => 1,
'help' =>
'LinkToProduct'),
837 'batch' => array(
'type' =>
'string',
'label' =>
'Batch',
'visible' => 1,
'enabled' => 1,
'position' => 32,
'index' => 1,
'help' =>
'LinkToProduct'),
838 'datec' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 500),
839 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 501),
840 'qty_stock' => array(
'type' =>
'double',
'label' =>
'QtyFound',
'visible' => 1,
'enabled' => 1,
'position' => 32,
'index' => 1,
'help' =>
'Qty we found/want (to define during draft edition)'),
841 'qty_view' => array(
'type' =>
'double',
'label' =>
'QtyBefore',
'visible' => 1,
'enabled' => 1,
'position' => 33,
'index' => 1,
'help' =>
'Qty before (filled once movements are validated)'),
842 'qty_regulated' => array(
'type' =>
'double',
'label' =>
'QtyDelta',
'visible' => 1,
'enabled' => 1,
'position' => 34,
'index' => 1,
'help' =>
'Qty added or removed (filled once movements are validated)'),
843 'pmp_real' => array(
'type' =>
'double',
'label' =>
'PMPReal',
'visible' => 1,
'enabled' => 1,
'position' => 35),
844 'pmp_expected' => array(
'type' =>
'double',
'label' =>
'PMPExpected',
'visible' => 1,
'enabled' => 1,
'position' => 36),
855 public $fk_inventory;
859 public $fk_warehouse;
886 public $qty_regulated;
895 public $pmp_expected;
905 $this->ismultientitymanaged = 0;
907 $this->isextrafieldmanaged = 0;
928 public function fetch($id, $ref =
null)
954 public function delete(
User $user, $notrigger = 0)
if(! $sortfield) if(! $sortorder) $object
Parent class of all other business classes (invoices, contracts, proposals, orders,...
deleteLineCommon(User $user, $idline, $notrigger=0)
Delete a line of object in database.
setStatut($status, $elementId=null, $elementType='', $trigkey='', $fieldstatus='')
Set status of an object.
setErrorsFromObject($object)
setErrorsFromObject
createCommon(User $user, $notrigger=0)
Create object in the database.
updateCommon(User $user, $notrigger=0)
Update object into database.
initAsSpecimenCommon()
Initialise object with example values Id must be 0 if object instance is a specimen.
fetchCommon($id, $ref=null, $morewhere='', $noextrafields=0)
Load object in memory from the database.
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
Class to manage Dolibarr database access.
getNomUrl($withpicto=0, $option='', $notooltip=0, $morecss='', $save_lastsearch_value=-1)
Return a link to the object card (with optionally the picto)
create(User $user, $notrigger=0)
Create object into database.
setRecorded(User $user, $notrigger=0)
Set to inventory to status "Closed".
LibStatut($status, $mode=0)
Return the status.
getKanbanView($option='', $arraydata=null)
Return a thumb for kanban views.
__construct(DoliDB $db)
Constructor.
getLibStatut($mode=0)
Return the label of the status.
info($id)
Charge les information d'ordre info dans l'objet commande.
setDraft(User $user, $notrigger=0)
Go back to draft.
update(User $user, $notrigger=0)
Load object lines in memory from the database.
setCanceled(User $user, $notrigger=0)
Set to Canceled.
validate(User $user, $notrigger=0, $include_sub_warehouse=0)
Validate inventory (start it)
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
deleteLine(User $user, $idline, $notrigger=0)
Delete a line of object in database.
fetch($id, $ref=null)
Load object in memory from the database.
getChildWarehouse($id, &$TChildWarehouse)
Return the child warehouse of the current one.
createFromClone(User $user, $fromid)
Clone and object into another one.
update(User $user, $notrigger=0)
Update object into database.
__construct($db)
Constructor.
create(User $user, $notrigger=0)
Create object in database.
fetch($id, $ref=null)
Load object in memory from the database.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
dol_now($mode='gmt')
Return date for now.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
print $langs trans('Date')." left Ref Label right Qty right Price right TotalHT right TotalTTC right right right right right right right right right centpercent right TotalHT right n right VAT right n right TotalVAT right n No sujeto a RE IRPF right TotalLT1 right n right TotalLT2 right n right TotalTTC right n takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency takeposcustomercurrency right TotalTTC takeposcustomercurrency right takeposcustomercurrency n right Paid right PaymentTypeShortLIQ right SELECT p pos_change as p datep as p p num_paiement as f pf amount as amount