Skip to content

Instantly share code, notes, and snippets.

@sagartmg2
sagartmg2 / php
Created February 18, 2025 04:45
sync contract data to ebs
/**
* sync contract data to oracle
*/
public function insertIntoCustomDffUpdateStgTable($contract_id)
{
$contract = $this->CI->cm->find($contract_id);
$variables = json_decode($contract->variables);
$charges = (array)$variables->contract_data->charge_data->charges;
$contractToEBSfields = $this->CI->config->item("contractToEBSfields");