fixes
This commit is contained in:
@@ -22,6 +22,16 @@ function wiaas_get_entry_meta($entry_meta, $form_id) {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$entry_meta[ 'wiaas_delivery_process_id' ] = array(
|
||||||
|
'label' => 'Wiaas Delivery Process Id',
|
||||||
|
'is_numeric' => true,
|
||||||
|
'update_entry_meta_callback' => null,
|
||||||
|
'is_default_column' => false, // this column will be displayed by default on the entry list
|
||||||
|
'filter' => array(
|
||||||
|
'operators' => array( 'is' ),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
return $entry_meta;
|
return $entry_meta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ class Wiaas_Delivery_Process_Step extends Gravity_Flow_Step {
|
|||||||
$target_form = GFAPI::get_form( $this->target_form_id );
|
$target_form = GFAPI::get_form( $this->target_form_id );
|
||||||
$new_entry = array(
|
$new_entry = array(
|
||||||
'form_id' => $this->target_form_id,
|
'form_id' => $this->target_form_id,
|
||||||
|
'wiaas_delivery_process_id' => $this->get_entry_id(),
|
||||||
);
|
);
|
||||||
|
|
||||||
$customer_id_value = null;
|
$customer_id_value = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user