Пример #1
0
 /**
  * Function to process the notify date in the passed formdata of the datamanger
  * creates/edits/deletes the corresponding at_entry if needed
  *
  * @param array $formdata The Formdata of the datamanager containing the notify_date
  * @param org_openpsa_sales_salesproject_deliverable_dba $deliverable The current deliverable
  */
 public function process_notify_date($formdata, org_openpsa_sales_salesproject_deliverable_dba $deliverable)
 {
     //check if there is already an at_entry
     $mc_entry = org_openpsa_relatedto_dba::new_collector('toGuid', $deliverable->guid);
     $mc_entry->add_constraint('fromClass', '=', 'midcom_services_at_entry_dba');
     $mc_entry->add_constraint('toClass', '=', 'org_openpsa_sales_salesproject_deliverable_dba');
     $mc_entry->add_constraint('toExtra', '=', 'notify_at_entry');
     $entry_keys = $mc_entry->get_values('fromGuid');
     //check date
     if (!$formdata['notify']->is_empty()) {
         $notification_entry = null;
         if (count($entry_keys) == 0) {
             $notification_entry = new midcom_services_at_entry_dba();
             $notification_entry->create();
             //relatedto from notifcation to deliverable
             org_openpsa_relatedto_plugin::create($notification_entry, 'midcom.services.at', $deliverable, 'org.openpsa.sales', false, array('toExtra' => 'notify_at_entry'));
         } else {
             //get guid of at_entry
             foreach ($entry_keys as $key => $entry) {
                 //check if related at_entry exists
                 try {
                     $notification_entry = new midcom_services_at_entry_dba($entry);
                 } catch (midcom_error $e) {
                     //relatedto links to a non-existing at_entry - so create a new one an link to it
                     $notification_entry = new midcom_services_at_entry_dba();
                     $notification_entry->create();
                     $relatedto = new org_openpsa_relatedto_dba($key);
                     $relatedto->fromGuid = $notification_entry->guid;
                     $relatedto->update();
                 }
                 break;
             }
         }
         $notification_entry->start = $formdata['notify']->value->format('U');
         $notification_entry->method = 'new_notification_message';
         $notification_entry->component = 'org.openpsa.sales';
         $notification_entry->arguments = array('deliverable' => $deliverable->guid);
         $notification_entry->update();
     } else {
         //void date - so delete existing at_entrys for this notify_date
         foreach ($entry_keys as $key => $empty) {
             try {
                 $notification_entry = new midcom_services_at_entry_dba($mc_entry->get_subkey($key, 'fromGuid'));
                 //check if related at_entry exists & delete it
                 $notification_entry->delete();
             } catch (midcom_error $e) {
                 $e->log();
             }
         }
     }
 }
Пример #2
0
 /**
  * Manually trigger a subscription cycle run.
  */
 private function _run_cycle()
 {
     if (empty($_POST['at_entry'])) {
         throw new midcom_error('No AT entry specified');
     }
     $entry = new midcom_services_at_entry_dba($_POST['at_entry']);
     $deliverable = new org_openpsa_sales_salesproject_deliverable_dba($entry->arguments['deliverable']);
     $scheduler = new org_openpsa_invoices_scheduler($deliverable);
     if (!$scheduler->run_cycle($entry->arguments['cycle'])) {
         throw new midcom_error('Failed to run cycle, see debug log for details');
     }
     if (!$entry->delete()) {
         throw new midcom_error('Could not delete AT entry: ' . midcom_connection::get_error_string());
     }
 }
Пример #3
0
 public function testCRUD()
 {
     $args = array('arg1' => 'test', 'arg2' => 12);
     midcom::get('auth')->request_sudo('midcom.services.at');
     $entry = new midcom_services_at_entry_dba();
     $entry->arguments = $args;
     $stat = $entry->create();
     $this->assertTrue($stat);
     //@todo For some reason, this throws a "Critical internal error". Needs to be investigated
     //$this->register_object($entry);
     $this->assertEquals($args, $entry->arguments);
     $this->assertEquals(midcom_services_at_entry_dba::SCHEDULED, $entry->status);
     $args['arg2'] = 11;
     $entry->arguments = $args;
     $stat = $entry->update();
     $this->assertTrue($stat);
     $this->assertEquals($args, $entry->arguments);
     $stat = $entry->delete();
     $this->assertTrue($stat);
     midcom::get('auth')->drop_sudo();
 }