file upload
This commit is contained in:
parent
752f43a3cd
commit
3824f47fd3
@ -470,38 +470,41 @@ function add($pathname)
|
||||
if($POStatus==SPECIAL_PO){
|
||||
|
||||
$count = $this->input->post('hidecounters');
|
||||
//$constant = $this->input->post('hideconstants');
|
||||
$constant = $this->input->post('hideconstants');
|
||||
|
||||
|
||||
|
||||
for($i=1;$i<=$count;$i++){
|
||||
for($i=1;$i<=$constant;$i++){
|
||||
$pathname = 'browseFiles'.$i;
|
||||
if(!empty($_FILES[$pathname]['name']))
|
||||
{
|
||||
|
||||
|
||||
$Picture = $this->add($pathname);
|
||||
|
||||
$arr[$i] = $Picture;
|
||||
//echo $Picture;
|
||||
$arr[] = array($Picture);
|
||||
}
|
||||
// }
|
||||
|
||||
}
|
||||
//print_r($arr);
|
||||
foreach($arr as $ma){
|
||||
|
||||
$myfile = array('FilePath'=>$ma,'PONO'=>$PONO);
|
||||
// $index = 0;
|
||||
// foreach($ma as $key=>$value){
|
||||
// $index++;
|
||||
// if($index == 1){
|
||||
// $filename = $value;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
$index = 0;
|
||||
foreach($ma as $key=>$value){
|
||||
$index++;
|
||||
if($index == 1){
|
||||
$filename = $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$myfile = array('FilePath'=>$filename,'PONO'=>$PONO);
|
||||
$this->purchaseorder_model->fileupload($myfile);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -975,43 +978,42 @@ $RequestedBy = $this->input->post('drpDepartment');
|
||||
}
|
||||
|
||||
$counts = $this->input->post('hidecounter');
|
||||
//$constants = $this->input->post('hideconstant');
|
||||
$constants = $this->input->post('hideconstant');
|
||||
|
||||
|
||||
|
||||
|
||||
for($i=1;$i<=$counts;$i++){
|
||||
for($i=1;$i<=$constants;$i++){
|
||||
$pathname = 'browseFiles'.$i;
|
||||
|
||||
|
||||
|
||||
if(!empty($_FILES[$pathname]['name']))
|
||||
{
|
||||
|
||||
|
||||
$Picture = $this->addfile($pathname);
|
||||
//echo $Picture;
|
||||
$arr[$i] =$Picture;
|
||||
$arr[$i] = array($Picture);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
//print_r($arr);
|
||||
foreach($arr as $ma){
|
||||
|
||||
$myfile = array('FilePath'=>$ma,'PONO'=>$PONO,'IGRNO'=>$IGRNO);
|
||||
// $index = 0;
|
||||
// $filename = null;
|
||||
// foreach($ma as $key=>$value){
|
||||
// $index++;
|
||||
// if($index == 1){
|
||||
// $filename = $value;
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
|
||||
$index = 0;
|
||||
$filename = null;
|
||||
foreach($ma as $key=>$value){
|
||||
$index++;
|
||||
if($index == 1){
|
||||
$filename = $value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$myfile = array('FilePath'=>$filename,'PONO'=>$PONO,'IGRNO'=>$IGRNO);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$this->purchaseorder_model->fileupload($myfile);
|
||||
|
||||
@ -3846,7 +3846,7 @@ $("#addmorebutton").click(function(){
|
||||
var bill = <?php echo json_encode($getdata)?>;
|
||||
if(bill.length>=5){
|
||||
|
||||
alert("Five files Only updated");//this allows only 5 files;
|
||||
alert("You have to upload five files only");//this allows only 5 files;
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
|
||||
@ -8715,7 +8715,7 @@ $("#addmorebutton").click(function(){
|
||||
//alert('sda');
|
||||
|
||||
if(counter>4){
|
||||
alert("Five files Only updated");//this allows only 5 files;
|
||||
alert("You have to upload five files only");//this allows only 5 files;
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
@ -8823,7 +8823,7 @@ $("#addemorebutton").click(function(){
|
||||
//alert('sda');
|
||||
|
||||
if(counters>4){
|
||||
alert("Five files Only updated");//this allows only 5 files;
|
||||
alert("You have to upload five files only");//this allows only 5 files;
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
|
||||
@ -5775,7 +5775,7 @@ return tot;
|
||||
//alert(bill.length);
|
||||
if(bill.length>=5){
|
||||
|
||||
alert("Five files Only updated");//this allows only 5 files;
|
||||
alert("You have to upload five files only");//this allows only 5 files;
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user