14 lines
371 B
PHP
14 lines
371 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||
|
|
extract($_POST, EXTR_PREFIX_SAME, "wddx");
|
||
|
|
|
||
|
|
global $app_list_strings, $mod_strings;
|
||
|
|
|
||
|
|
require_once('modules/EcmStockDocIns/EcmStockDocIn.php');
|
||
|
|
$arr = EcmStockDocIn::setStatus($record,$status);
|
||
|
|
|
||
|
|
$json = getJSONobj();
|
||
|
|
echo '['.str_replace('"','\"',$json->encode($arr)).']';
|
||
|
|
|
||
|
|
?>
|