2012-07-11 18:13:41 +02:00
|
|
|
<?php
|
2012-12-30 15:13:49 +01:00
|
|
|
/* Copyright (C) 2012 Regis Houssin <regis.houssin@capnetworks.com>
|
2012-07-11 18:13:41 +02:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2012-07-11 18:13:41 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file htdocs/core/class/commonorder.class.php
|
|
|
|
|
* \ingroup core
|
|
|
|
|
* \brief File of the superclass of orders classes (customer and supplier)
|
|
|
|
|
*/
|
|
|
|
|
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT .'/core/class/commonobject.class.php';
|
2012-07-11 18:13:41 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \class CommonOrder
|
|
|
|
|
* \brief Superclass for orders classes
|
|
|
|
|
*/
|
|
|
|
|
abstract class CommonOrder extends CommonObject
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-10 16:05:41 +02:00
|
|
|
/**
|
|
|
|
|
* \class CommonOrderLine
|
|
|
|
|
* \brief Superclass for orders classes
|
|
|
|
|
*/
|
|
|
|
|
abstract class CommonOrderLine extends CommonObject
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-11 18:13:41 +02:00
|
|
|
?>
|