how to pass the value of frm and other parameter susing ajax and jquery?

how to pass the value of frm and other parameter susing ajax and jquery?

hi im stuck here for many days please help me. i need to pass the value of selected ids into ajax . but my parameter is null

but when i remove this part. the the ids has a value but my model parameter is null. i need to pass the value of both parameter
  1. var fileInput = $('#files');  
  2.                 var filename = fileInput.files[0].name  
  3.                 formdata.append(filename, fileInput.files[0]);

this is my full code. 

  1. var table;
  2.     $(function () {
  3.         table = $('#Payable').DataTable({
  4.                 "ajax": "@Url.Action("getpayablelist", "payment")",
  5.                  "columns": [
  6.                     {
  7.                         "render": function (data, type, full, meta) {
  8.                            return "<input type='checkbox' class='selected' onclick='add(" + full.Id + ", " + full.Amount + ", this.checked)'>"
  9.                         }
  10.                     },
  11.                     { "data": "Type" },
  12.                     { "data": "ReferenceNo" },
  13.                     { "data": "Amount" }
  14.                 ]
  15.         });
  16.     });

  17.     function edit(id) {
  18.         window.location.href = "@Url.Action("add", "order")?id=" + id;
  19.     }
  20.         
  21.     var ids = [];
  22.     function add(id, isChecked) {
  23.         if (isChecked) {
  24.             ids.push(id);
  25.         }
  26.         else {
  27.             var i = ids.indexOf(id);
  28.             ids.splice(i, 1);
  29.         }
  30.     }

  31.     $(document).ready(function () {
  32.         $("#btnUpload").click(function () {
  33.             var model = $('#addcompanydata').serialize()
  34.             var fileInput = $('#files');  
  35.                 var filename = fileInput.files[0].name  
  36.                 formdata.append(filename, fileInput.files[0]);

  37.                  $.ajax({
  38.                      type: "POST",
  39.                      url: '@Url.Action("index", "payment")',    
  40.                      data: { model: model, ids: ids },              
  41.                      dataType: 'json',
  42.                      traditional: true,
  43.                      success: function (result) {
  44.                          console.log(result);
  45.                      },
  46.                  })
  47.             return false;
  48.         });
  49.     });