00001 <?php
00002
00006 class delivery_users_ajax extends ajaxListComponent
00007 {
00013 protected $_aColumns = array( 'container1' => array(
00014 array( 'oxusername', 'oxuser', 1, 0, 0 ),
00015 array( 'oxlname', 'oxuser', 0, 0, 0 ),
00016 array( 'oxfname', 'oxuser', 0, 0, 0 ),
00017 array( 'oxstreet', 'oxuser', 0, 0, 0 ),
00018 array( 'oxstreetnr', 'oxuser', 0, 0, 0 ),
00019 array( 'oxcity', 'oxuser', 0, 0, 0 ),
00020 array( 'oxzip', 'oxuser', 0, 0, 0 ),
00021 array( 'oxfon', 'oxuser', 0, 0, 0 ),
00022 array( 'oxbirthdate', 'oxuser', 0, 0, 0 ),
00023 array( 'oxid', 'oxuser', 0, 0, 1 ),
00024 ),
00025 'container2' => array(
00026 array( 'oxusername', 'oxuser', 1, 0, 0 ),
00027 array( 'oxlname', 'oxuser', 0, 0, 0 ),
00028 array( 'oxfname', 'oxuser', 0, 0, 0 ),
00029 array( 'oxstreet', 'oxuser', 0, 0, 0 ),
00030 array( 'oxstreetnr', 'oxuser', 0, 0, 0 ),
00031 array( 'oxcity', 'oxuser', 0, 0, 0 ),
00032 array( 'oxzip', 'oxuser', 0, 0, 0 ),
00033 array( 'oxfon', 'oxuser', 0, 0, 0 ),
00034 array( 'oxbirthdate', 'oxuser', 0, 0, 0 ),
00035 array( 'oxid', 'oxobject2delivery', 0, 0, 1 ),
00036 )
00037 );
00038
00044 protected function _getQuery()
00045 {
00046 $myConfig = $this->getConfig();
00047
00048 $sUserTable = $this->_getViewName('oxuser');
00049 $oDb = oxDb::getDb();
00050 $sId = $myConfig->getRequestParameter( 'oxid' );
00051 $sSynchId = $myConfig->getRequestParameter( 'synchoxid' );
00052
00053
00054 if ( !$sId) {
00055 $sQAdd = " from $sUserTable where 1 ";
00056 if (!$myConfig->getConfigParam( 'blMallUsers' ) )
00057 $sQAdd .= " and $sUserTable.oxshopid = '".$myConfig->getShopId()."' ";
00058 } elseif ( $sSynchId && $sSynchId != $sId ) {
00059
00060 $sQAdd = " from oxobject2group left join $sUserTable on $sUserTable.oxid = oxobject2group.oxobjectid ";
00061 $sQAdd .= " where oxobject2group.oxgroupsid = ".$oDb->quote( $sId );
00062 if (!$myConfig->getConfigParam( 'blMallUsers' ) )
00063 $sQAdd .= " and $sUserTable.oxshopid = '".$myConfig->getShopId()."' ";
00064 } else {
00065 $sQAdd = " from oxobject2delivery left join $sUserTable on $sUserTable.oxid=oxobject2delivery.oxobjectid ";
00066 $sQAdd .= " where oxobject2delivery.oxdeliveryid = ".$oDb->quote( $sId )." and oxobject2delivery.oxtype = 'oxuser' and $sUserTable.oxid IS NOT NULL ";
00067 }
00068
00069 if ( $sSynchId && $sSynchId != $sId) {
00070 $sQAdd .= " and $sUserTable.oxid not in ( select $sUserTable.oxid from oxobject2delivery left join $sUserTable on $sUserTable.oxid=oxobject2delivery.oxobjectid ";
00071 $sQAdd .= " where oxobject2delivery.oxdeliveryid = ".$oDb->quote( $sSynchId )." and oxobject2delivery.oxtype = 'oxuser' and $sUserTable.oxid IS NOT NULL ) ";
00072 }
00073
00074 return $sQAdd;
00075 }
00076
00082 public function removeUserFromDel()
00083 {
00084 $aRemoveGroups = $this->_getActionIds( 'oxobject2delivery.oxid' );
00085 if ( $this->getConfig()->getRequestParameter( 'all' ) ) {
00086
00087 $sQ = $this->_addFilter( "delete oxobject2delivery.* ".$this->_getQuery() );
00088 oxDb::getDb()->Execute( $sQ );
00089
00090 } elseif ( $aRemoveGroups && is_array( $aRemoveGroups ) ) {
00091 $sQ = "delete from oxobject2delivery where oxobject2delivery.oxid in (" . implode( ", ", oxDb::getInstance()->quoteArray( $aRemoveGroups ) ) . ") ";
00092 oxDb::getDb()->Execute( $sQ );
00093 }
00094 }
00095
00101 public function addUserToDel()
00102 {
00103 $aChosenUsr = $this->_getActionIds( 'oxuser.oxid' );
00104 $soxId = $this->getConfig()->getRequestParameter( 'synchoxid' );
00105
00106
00107 if ( $this->getConfig()->getRequestParameter( 'all' ) ) {
00108 $sUserTable = $this->_getViewName('oxuser');
00109 $aChosenUsr = $this->_getAll( $this->_addFilter( "select $sUserTable.oxid ".$this->_getQuery() ) );
00110 }
00111
00112 if ( $soxId && $soxId != "-1" && is_array( $aChosenUsr ) ) {
00113 foreach ( $aChosenUsr as $sChosenUsr) {
00114 $oObject2Delivery = oxNew( 'oxbase' );
00115 $oObject2Delivery->init( 'oxobject2delivery' );
00116 $oObject2Delivery->oxobject2delivery__oxdeliveryid = new oxField($soxId);
00117 $oObject2Delivery->oxobject2delivery__oxobjectid = new oxField($sChosenUsr);
00118 $oObject2Delivery->oxobject2delivery__oxtype = new oxField('oxuser');
00119 $oObject2Delivery->save();
00120 }
00121 }
00122 }
00123 }