You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MarketingController.php 121KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017
  1. <?php
  2. namespace App\Http\Controllers\DS;
  3. use Illuminate\Http\Request;
  4. use App\Http\Controllers\Controller;
  5. use Illuminate\Support\Facades\Auth;
  6. use Carbon\Carbon;
  7. use Validator;
  8. use PDF;
  9. use App\Staff;
  10. use App\Model\StaffDetail;
  11. use App\Model\Coverage;
  12. use App\Model\DealerClaim;
  13. use App\Model\Company;
  14. use App\Model\Commission;
  15. use App\Model\Form;
  16. use App\Model\PackageDetail;
  17. use App\Model\Subscriber;
  18. use App\Model\WorkOrder;
  19. use App\Model\Docket;
  20. use App\Model\Product;
  21. class MarketingController extends Controller
  22. {
  23. public function dashboard()
  24. {
  25. $id = Auth::guard('ms')->id();
  26. $user = Staff::with('StaffDetail')->find($id);
  27. $finalD1 = array(); $finalD2 = array(); $finalD3 = array(); $finalD4 = array(); $finalD5 = array(); $finalD6 = array();
  28. $jan = array(); $feb = array(); $mac = array(); $april = array(); $may = array(); $jun = array();
  29. $july = array(); $august = array(); $sep = array(); $oct = array(); $nov = array(); $dec = array();
  30. $jan1 = array(); $feb1 = array(); $mac1 = array(); $april1 = array(); $may1 = array(); $jun1 = array();
  31. $july1 = array(); $august1 = array(); $sep1 = array(); $oct1 = array(); $nov1 = array(); $dec1 = array();
  32. $de = Form::all();
  33. foreach ($de as $key => $d) {
  34. if(!empty($d->dealer_id)){
  35. $finalD1[] = $d;
  36. $mY = Carbon::parse($d->created_at)->format('m/Y');
  37. if($mY == '01/2019'){
  38. $jan[] = $d;
  39. }else if($mY == '02/2019'){
  40. $feb[] = $d;
  41. }else if($mY == '03/2019'){
  42. $mac[] = $d;
  43. }else if($mY == '04/2019'){
  44. $april[] = $d;
  45. }else if($mY == '05/2019'){
  46. $may[] = $d;
  47. }else if($mY == '06/2019'){
  48. $jun[] = $d;
  49. }else if($mY == '07/2019'){
  50. $july[] = $d;
  51. }else if($mY == '08/2019'){
  52. $august[] = $d;
  53. }else if($mY == '09/2019'){
  54. $sep[] = $d;
  55. }else if($mY == '10/2019'){
  56. $oct[] = $d;
  57. }else if($mY == '11/2019'){
  58. $nov[] = $d;
  59. }else if($mY == '12/2019'){
  60. $dec[] = $d;
  61. }
  62. $finalD6 = [count($jan),count($feb),count($mac),count($april),count($may),count($jun),count($july),count($august),count($sep),count($oct),count($nov),count($dec)];
  63. }else if(empty($d->dealer_id)){
  64. $mY = Carbon::parse($d->created_at)->format('m/Y');
  65. if($mY == '01/2019'){
  66. $jan1[] = $d;
  67. }else if($mY == '02/2019'){
  68. $feb1[] = $d;
  69. }else if($mY == '03/2019'){
  70. $mac1[] = $d;
  71. }else if($mY == '04/2019'){
  72. $april1[] = $d;
  73. }else if($mY == '05/2019'){
  74. $may1[] = $d;
  75. }else if($mY == '06/2019'){
  76. $jun1[] = $d;
  77. }else if($mY == '07/2019'){
  78. $july1[] = $d;
  79. }else if($mY == '08/2019'){
  80. $august1[] = $d;
  81. }else if($mY == '09/2019'){
  82. $sep1[] = $d;
  83. }else if($mY == '10/2019'){
  84. $oct1[] = $d;
  85. }else if($mY == '11/2019'){
  86. $nov1[] = $d;
  87. }else if($mY == '12/2019'){
  88. $dec1[] = $d;
  89. }
  90. $finalD5 = [count($jan1),count($feb1),count($mac1),count($april1),count($may1),count($jun1),count($july1),count($august1),count($sep1),count($oct1),count($nov1),count($dec1)];
  91. if($d->type_service != 'Rectification'){
  92. $finalD2[] = $d;
  93. $finalD4[] = $d;
  94. }
  95. }
  96. if($d->type_service == 'Rectification'){
  97. $finalD3[] = $d;
  98. }
  99. }
  100. $total = count($finalD4);
  101. $dealer = count($finalD1);
  102. $normal = count($finalD2);
  103. $rec = count($finalD3);
  104. $rejected = count(Form::onlyTrashed()->get());
  105. return view('market.dashboard',compact('user','total','rec','dealer','normal','rejected','finalD5','finalD6'));
  106. }
  107. public function index(){
  108. $id = Auth::guard('ms')->id();
  109. $user = Staff::with('StaffDetail')->find($id);
  110. return view('market.index',compact('user'));
  111. }
  112. //Dealer's List
  113. public function marketindex(){
  114. $id = Auth::guard('ms')->id();
  115. $user = Staff::with('StaffDetail')->find($id);
  116. $marketdetail= Company::where('team','Dealer')->orderBy('created_at','desc')->get();
  117. $curr = Carbon::now()->getTimestamp();
  118. $i = 0;
  119. $nested_data = array();
  120. if(!empty($marketdetail)){
  121. foreach ($marketdetail as $a)
  122. {
  123. $i++; $n1 = '';
  124. $reg_time = $a->created_at;
  125. $expiry_date = $reg_time->addDays(3);
  126. $expiry_date = $expiry_date->getTimestamp();
  127. if($curr < $expiry_date) {
  128. $n1 = "New/";
  129. }
  130. array_push($nested_data, array(
  131. 'index' => $n1.$i,
  132. 'name' => $a->name,
  133. 'address' => $a->address,
  134. 'city' => $a->city,
  135. 'state' => $a->state,
  136. 'postcode' => $a->postcode,
  137. 'action' => $a->_id
  138. ));
  139. }
  140. }
  141. return \DataTables::of($nested_data)->make(true);
  142. }
  143. //Dealer form
  144. public function showDealerForm(){
  145. $id = Auth::guard('ms')->id();
  146. $user = Staff::with('StaffDetail')->find($id);
  147. return view('market.add_dealer',compact('user'));
  148. }
  149. //Agent's list
  150. public function agentList()
  151. {
  152. $id = Auth::guard('ms')->id();
  153. $user = Staff::with('StaffDetail')->find($id);
  154. return view('market.agent_list',compact('user'));
  155. }
  156. //
  157. public function getAgentList()
  158. {
  159. $id = Auth::guard('ms')->id();
  160. $user = Staff::with('StaffDetail')->find($id);
  161. $agent = Staff::with('Company','StaffDetail')->orderBy('created_at','desc')->get();
  162. $curr = Carbon::now()->getTimestamp();
  163. $i = 0;
  164. $nested_data = array();
  165. if(!empty($agent))
  166. {
  167. foreach ($agent as $a)
  168. {
  169. if($a->StaffDetail->position == 'Dealer')
  170. {
  171. $i++; $n1 = '';
  172. $reg_time = $a->created_at;
  173. $expiry_date = $reg_time->addDays(3);
  174. $expiry_date = $expiry_date->getTimestamp();
  175. if($curr < $expiry_date) {
  176. $n1 = "New/";
  177. }
  178. array_push($nested_data, array(
  179. 'index' => $n1.$i,
  180. 'user_pic' => $a->StaffDetail->user_pic,
  181. 'name' => $a->StaffDetail->name,
  182. 'ic' => $a->StaffDetail->ic,
  183. 'email' => $a->StaffDetail->email,
  184. 'phone' => $a->StaffDetail->phone,
  185. 'company_id' => $a->Company->name,
  186. 'position' => $a->StaffDetail->position,
  187. 'action' => $a->_id
  188. ));
  189. }
  190. }
  191. }
  192. return \DataTables::of($nested_data)->make(true);
  193. }
  194. //Show form for adding agent
  195. public function showAgentForm()
  196. {
  197. $id = Auth::guard('ms')->id();
  198. $user = Staff::with('StaffDetail')->find($id);
  199. $company = Company::where('team', 'Dealer')->get();
  200. return view('market.agent_add',compact('user','company'));
  201. }
  202. //Show commission list R
  203. public function commissionListR()
  204. {
  205. $id = Auth::guard('ms')->id();
  206. $user = Staff::with('StaffDetail')->find($id);
  207. return view('market.commission_listR',compact('user'));
  208. }
  209. //Show comission list B
  210. public function commissionListB()
  211. {
  212. $id = Auth::guard('ms')->id();
  213. $user = Staff::find($id);
  214. $email = $user->email;
  215. $staffDetails = StaffDetail::where('email',$email)->first();
  216. return view('market.commission_listB',compact('staffDetails','user'));
  217. }
  218. //Show form for adding new commission R
  219. public function commissionFormR()
  220. {
  221. $id = Auth::guard('ms')->id();
  222. $user = Staff::find($id);
  223. $email = $user->email;
  224. $staffDetails = StaffDetail::where('email',$email)->first();
  225. return view('market.commission_formR',compact('staffDetails','user'));
  226. }
  227. //Show form for adding new commission B
  228. public function commissionFormB()
  229. {
  230. $id = Auth::guard('ms')->id();
  231. $user = Staff::find($id);
  232. $email = $user->email;
  233. $staffDetails = StaffDetail::where('email',$email)->first();
  234. return view('market.commission_formB',compact('staffDetails','user'));
  235. }
  236. public function getCommissionListR24()
  237. {
  238. $id = Auth::guard('ms')->id();
  239. $user = Staff::find($id);
  240. $email = $user->email;
  241. $marketdetail= Commission::where('contract','24')->where('formT','R')->orderBy('created_by','desc')->get();
  242. $curr = Carbon::now()->getTimestamp();
  243. $i = 0;
  244. $nested_data = array();
  245. if(!empty($marketdetail))
  246. {
  247. foreach ($marketdetail as $a)
  248. {
  249. $i++; $n1 = '';
  250. $reg_time = $a->created_at;
  251. $expiry_date = $reg_time->addDays(3);
  252. $expiry_date = $expiry_date->getTimestamp();
  253. if($curr < $expiry_date) {
  254. $n1 = "New/";
  255. }
  256. array_push($nested_data, array(
  257. 'index' => $n1.$i,
  258. 'formT' => $a->formT,
  259. 'ranges' => $a->ranges,
  260. 'comm' => $a->comm,
  261. 'category' => $a->category,
  262. 'contract' => $a->contract,
  263. 'action' => $a->_id
  264. ));
  265. }
  266. }
  267. return \DataTables::of($nested_data)->make(true);
  268. }
  269. public function getCommissionListR12()
  270. {
  271. $id = Auth::guard('ms')->id();
  272. $user = Staff::find($id);
  273. $email = $user->email;
  274. $marketdetail= Commission::where('contract','12')->where('formT','R')->orderBy('created_by','desc')->get();
  275. $curr = Carbon::now()->getTimestamp();
  276. $i = 0;
  277. $nested_data = array();
  278. if(!empty($marketdetail))
  279. {
  280. foreach ($marketdetail as $a)
  281. {
  282. $i++; $n1 = '';
  283. $reg_time = $a->created_at;
  284. $expiry_date = $reg_time->addDays(3);
  285. $expiry_date = $expiry_date->getTimestamp();
  286. if($curr < $expiry_date) {
  287. $n1 = "New/";
  288. }
  289. array_push($nested_data, array(
  290. 'index' => $n1.$i,
  291. 'formT' => $a->formT,
  292. 'ranges' => $a->ranges,
  293. 'comm' => $a->comm,
  294. 'category' => $a->category,
  295. 'contract' => $a->contract,
  296. 'action' => $a->_id
  297. ));
  298. }
  299. }
  300. return \DataTables::of($nested_data)->make(true);
  301. }
  302. public function getCommissionListB24Low()
  303. {
  304. $id = Auth::guard('ms')->id();
  305. $user = Staff::find($id);
  306. $email = $user->email;
  307. $marketdetail= Commission::where('contract','24')->where('formT','B')->where('packageR','10,30,50,100')->orderBy('created_by','desc')->get();
  308. $curr = Carbon::now()->getTimestamp();
  309. $i = 0;
  310. $nested_data = array();
  311. if(!empty($marketdetail))
  312. {
  313. foreach ($marketdetail as $a)
  314. {
  315. $i++; $n1 = '';
  316. $reg_time = $a->created_at;
  317. $expiry_date = $reg_time->addDays(3);
  318. $expiry_date = $expiry_date->getTimestamp();
  319. if($curr < $expiry_date) {
  320. $n1 = "New/";
  321. }
  322. array_push($nested_data, array(
  323. 'index' => $n1.$i,
  324. 'packageR' => $a->packageR,
  325. 'ranges' => $a->ranges,
  326. 'comm' => $a->comm,
  327. 'category' => $a->category,
  328. 'contract' => $a->contract,
  329. 'action' => $a->_id
  330. ));
  331. }
  332. }
  333. return \DataTables::of($nested_data)->make(true);
  334. }
  335. public function getCommissionListB24High()
  336. {
  337. $id = Auth::guard('ms')->id();
  338. $user = Staff::find($id);
  339. $email = $user->email;
  340. $marketdetail= Commission::where('contract','24')->where('formT','B')->orwhere('packageR','300')->orwhere('packageR','500')->orwhere('packageR','1')->orderBy('created_by','desc')->get();
  341. $curr = Carbon::now()->getTimestamp();
  342. $i = 0;
  343. $nested_data = array();
  344. if(!empty($marketdetail))
  345. {
  346. foreach ($marketdetail as $a)
  347. {
  348. $i++; $n1 = '';
  349. $reg_time = $a->created_at;
  350. $expiry_date = $reg_time->addDays(3);
  351. $expiry_date = $expiry_date->getTimestamp();
  352. if($curr < $expiry_date) {
  353. $n1 = "New/";
  354. }
  355. array_push($nested_data, array(
  356. 'index' => $n1.$i,
  357. 'packageR' => $a->packageR,
  358. 'ranges' => $a->ranges,
  359. 'comm' => $a->comm,
  360. 'category' => $a->category,
  361. 'contract' => $a->contract,
  362. 'action' => $a->_id
  363. ));
  364. }
  365. }
  366. return \DataTables::of($nested_data)->make(true);
  367. }
  368. public function getCommissionListB12Low()
  369. {
  370. $id = Auth::guard('ms')->id();
  371. $user = Staff::find($id);
  372. $email = $user->email;
  373. $marketdetail= Commission::where('contract','12')->where('formT','B')->where('packageR','10,30,50,100')->orderBy('created_by','desc')->get();
  374. $curr = Carbon::now()->getTimestamp();
  375. $i = 0;
  376. $nested_data = array();
  377. if(!empty($marketdetail))
  378. {
  379. foreach ($marketdetail as $a)
  380. {
  381. $i++; $n1 = '';
  382. $reg_time = $a->created_at;
  383. $expiry_date = $reg_time->addDays(3);
  384. $expiry_date = $expiry_date->getTimestamp();
  385. if($curr < $expiry_date) {
  386. $n1 = "New/";
  387. }
  388. array_push($nested_data, array(
  389. 'index' => $n1.$i,
  390. 'packageR' => $a->packageR,
  391. 'ranges' => $a->ranges,
  392. 'comm' => $a->comm,
  393. 'category' => $a->category,
  394. 'contract' => $a->contract,
  395. 'action' => $a->_id
  396. ));
  397. }
  398. }
  399. return \DataTables::of($nested_data)->make(true);
  400. }
  401. //Function to get commission list (1 year)
  402. public function getCommissionListB12High()
  403. {
  404. $id = Auth::guard('ms')->id();
  405. $user = Staff::find($id);
  406. $email = $user->email;
  407. $marketdetail= Commission::where('contract','12')->where('formT','B')->orwhere('packageR','300')->orwhere('packageR','500')->orwhere('packageR','1')->orderBy('created_by','desc')->get();
  408. $curr = Carbon::now()->getTimestamp();
  409. $i = 0;
  410. $nested_data = array();
  411. if(!empty($marketdetail))
  412. {
  413. foreach ($marketdetail as $a)
  414. {
  415. $i++; $n1 = '';
  416. $reg_time = $a->created_at;
  417. $expiry_date = $reg_time->addDays(3);
  418. $expiry_date = $expiry_date->getTimestamp();
  419. if($curr < $expiry_date) {
  420. $n1 = "New/";
  421. }
  422. array_push($nested_data, array(
  423. 'index' => $n1.$i,
  424. 'packageR' => $a->packageR,
  425. 'ranges' => $a->ranges,
  426. 'comm' => $a->comm,
  427. 'category' => $a->category,
  428. 'contract' => $a->contract,
  429. 'action' => $a->_id
  430. ));
  431. }
  432. }
  433. return \DataTables::of($nested_data)->make(true);
  434. }
  435. //Function to add company
  436. public function requestAddCompany(Request $request)
  437. {
  438. $companyData = [
  439. 'name' => $request->get('aname'),
  440. 'address' => $request->get('address'),
  441. 'city' => $request->get('city'),
  442. 'state' => $request->get('state'),
  443. 'postcode' => $request->get('postcode'),
  444. 'color' => '',
  445. 'team' => 'Dealer',
  446. 'status' => '',
  447. ];
  448. $companyDetail = Company::create($companyData);
  449. return redirect()->back()->with('success_msg', 'message');
  450. }
  451. //Function to add commission R
  452. public function requestAddCommissionR(Request $request)
  453. {
  454. $commissionData = [
  455. 'contract' => $request->get('contract'),
  456. 'ranges' => $request->get('ranges'),
  457. 'comm' => $request->get('comm'),
  458. 'category' => $request->get('categori'),
  459. 'formT' => 'R',
  460. 'packageR' => '',
  461. ];
  462. $commissionDetail = Commission::create($commissionData);
  463. return redirect()->back()->with('success_msg', 'message');
  464. }
  465. //Function to add commission B
  466. public function requestAddCommissionB(Request $request)
  467. {
  468. $commissionData = [
  469. 'packageR' => $request->get('packageR'),
  470. 'contract' => $request->get('contract'),
  471. 'ranges' => $request->get('ranges'),
  472. 'comm' => $request->get('comm'),
  473. 'category' => $request->get('categori'),
  474. 'formT' => 'B',
  475. ];
  476. $commissionDetail = Commission::create($commissionData);
  477. return redirect()->back()->with('success_msg', 'message');
  478. }
  479. /***
  480. / Encrypt Password
  481. ***/
  482. public function encryptPassword($action, $string) {
  483. $output = false;
  484. $encrypt_method = "AES-256-CBC";
  485. $secret_key = '28472B4B6250655368566D5970337336';
  486. $secret_iv = md5(md5($string)); //'This is my secret iv';
  487. // hash
  488. $key = hash('sha256', $secret_key);
  489. $iv = substr(hash('sha256', $secret_iv), 0, 16);
  490. if ( $action == 'encrypt' ) {
  491. $output = openssl_encrypt($string, $encrypt_method, $key, 0, $iv);
  492. $output = base64_encode($output);
  493. } else if( $action == 'decrypt' ) {
  494. $output = openssl_decrypt(base64_decode($string), $encrypt_method, $key, 0, $iv);
  495. }
  496. return $output;
  497. }
  498. //Function to add agent
  499. public function requestAddAgent(Request $request)
  500. {
  501. $validator = Validator::make($request->all(), [
  502. 'password' => 'min:8|confirmed',
  503. ]);
  504. if ($validator->fails()) {
  505. return redirect()->back()->withInput()->withErrors($validator);
  506. }
  507. $user = Staff::where('email', $request->get('email'))->first();
  508. if (empty($user)) {
  509. $pass = $this->encryptPassword('encrypt', $request->get('password'));
  510. $dealerD = new StaffDetail;
  511. $dealerD->name = $request->get('aname');
  512. $dealerD->ic = $request->get('ic');
  513. $dealerD->email = $request->get('email');
  514. $dealerD->phone = $request->get('phone');
  515. $dealerD->company_id = $request->get('vendor');
  516. $dealerD->color = '';
  517. $dealerD->position = 'Dealer';
  518. $dealerD->password = $pass;
  519. $dealerD->user_pic = 'assets/avatar/user.png';
  520. // Save Login Dealer
  521. $loginD = new Staff;
  522. $loginD->email = $request->get('email');
  523. $loginD->password = $pass;
  524. $loginD->roles_access = 'Dealer';
  525. $loginD->company_id = $request->get('vendor');
  526. $loginD->last_login_at = '';
  527. $loginD->last_login_ip = '';
  528. $company = Company::where('_id', $request->get('vendor'))->first();
  529. $company->staff()->save($loginD);
  530. // $dealer = DealerLaravel::create($loginData);
  531. $loginD->staffdetail()->save($dealerD);
  532. return redirect()->back()->with('success_msg', '<strong>Success!</strong> register <strong>'.$request->get('email').'</strong>');
  533. }
  534. else
  535. {
  536. return redirect()->back()->withInput()->withErrors('Email already exist!');
  537. }
  538. }
  539. //Function to delete company(dealer)
  540. public function deleteCompany(Request $request)
  541. {
  542. $company = Company::where('_id',$request->id)->first();
  543. if(!empty($company)){
  544. $company->delete();
  545. return 'true';
  546. }else {
  547. return 'false';
  548. }
  549. }
  550. //Function to delete Commission (R)
  551. public function deleteCommission(Request $request)
  552. {
  553. // CommissionLaravel::destroy($request);
  554. // return response()->json(['result'=>'success']);
  555. // return response()->json(['success'=>'Got Simple Ajax Request.']);
  556. $commission = Commission::where('_id',$request->id)->first();
  557. if(!empty($commission)){
  558. $commission->delete();
  559. return 'true';
  560. }else {
  561. return 'false';
  562. }
  563. }
  564. public function deleteAgent(Request $request)
  565. {
  566. // $agentdetail = StaffDetailLaravel::where('email',$request->email)->first();
  567. $agent = Staff::where('_id',$request->id)->first();
  568. $agentdetail = $agent->staffdetail()->first();
  569. if(!empty($agentdetail) && !empty($agent))
  570. {
  571. $agent->delete();
  572. $agentdetail->delete();
  573. return 'true';
  574. }
  575. else
  576. {
  577. return 'false';
  578. }
  579. }
  580. public function editCompany($company_id)
  581. {
  582. $id = Auth::guard('ms')->id();
  583. $user = Staff::with('StaffDetail')->find($id);
  584. $company = Company::where('_id', $company_id)->get();
  585. return view('market.edit_dealer',compact('user','company'));
  586. }
  587. public function updateCompany(Request $request)
  588. {
  589. $user = Company::where('_id', $request->get('company_id'))->first();
  590. $user->name = $request->get('aname');
  591. $user->address = $request->get('address');
  592. $user->city = $request->get('city');
  593. $user->state = $request->get('state');
  594. $user->postcode = $request->get('postcode');
  595. $user->color = '';
  596. $user->team = 'Dealer';
  597. $user->status = '';
  598. $user->save();
  599. return redirect()->route('mHome')->with('success_msg', 'message');
  600. }
  601. public function editCommissionR($commission_id)
  602. {
  603. $id = Auth::guard('ms')->id();
  604. $user = Staff::with('staffdetail')->find($id);
  605. $commission = Commission::where('_id', $commission_id)->get();
  606. return view('market.edit_commissionR',compact('user','commission'));
  607. }
  608. public function editCommissionB($commission_id)
  609. {
  610. $id = Auth::guard('ms')->id();
  611. $user = Staff::find($id);
  612. $email = $user->email;
  613. $staffDetails = StaffDetail::where('email',$email)->first();
  614. $commission = Commission::where('_id', $commission_id)->get();
  615. return view('market.edit_commissionB',compact('staffDetails','user','commission'));
  616. }
  617. public function editAgent($agent_id)
  618. {
  619. $id = Auth::guard('ms')->id();
  620. $user = Staff::with('StaffDetail')->find($id);
  621. $agentdetail = Staff::where('_id', $agent_id)->first();
  622. $company = Company::where('team', 'Dealer')->get();
  623. return view('market.edit_agent', compact('user', 'agentdetail', 'company'));
  624. }
  625. public function updateCommissionR(Request $request)
  626. {
  627. $commission = Commission::where('_id', $request->get('commission_id'))->first();
  628. $commission->contract = $request->get('contract');
  629. $commission->ranges = $request->get('ranges');
  630. $commission->comm = $request->get('comm');
  631. $commission->category = $request->get('categori');
  632. $commission->formT = 'R';
  633. $commission->packageR = '';
  634. $commission->save();
  635. return redirect()->route('commissionListR')->with('success_msg', 'message');
  636. }
  637. public function updateCommissionB(Request $request)
  638. {
  639. $commission = Commission::where('_id', $request->get('commission_id'))->first();
  640. $commission->packageR = $request->get('packageR');
  641. $commission->contract = $request->get('contract');
  642. $commission->ranges = $request->get('ranges');
  643. $commission->comm = $request->get('comm');
  644. $commission->category = $request->get('categori');
  645. $commission->formT = 'B';
  646. $commission->save();
  647. return redirect()->route('commissionListB')->with('success_msg', 'message');
  648. }
  649. public function updateAgent(Request $request)
  650. {
  651. $user = Staff::where('_id', $request->agent_id)->first();
  652. $validate = Staff::where('email', $request->email)->first();
  653. $detail = $user->staffdetail()->first();
  654. $getpass = $request->get('password');
  655. $pass = $this->encryptPassword('encrypt', $request->get('password'));
  656. if(empty($validate))
  657. {
  658. $detail->name = $request->get('aname');
  659. $detail->ic = $request->get('ic');
  660. $detail->email = $request->get('email');
  661. $detail->phone = $request->get('phone');
  662. $detail->company_id = $request->get('vendor');
  663. $user->email = $request->get('email');
  664. $user->company_id = $request->get('vendor');
  665. if(!empty($getpass))
  666. {
  667. $validator = Validator::make($request->all(), [
  668. 'password' => 'min:8|confirmed',
  669. ]);
  670. if ($validator->fails())
  671. {
  672. return redirect()->back()->withInput()->withErrors($validator);
  673. }
  674. $detail->password = $pass;
  675. $user->password = $pass;
  676. $detail->save();
  677. $user->save();
  678. }
  679. else
  680. {
  681. $detail->save();
  682. $user->save();
  683. }
  684. return redirect()->route('agentList')->with('success_msg', 'message');
  685. }
  686. else
  687. {
  688. if($user->email == $request->email)
  689. {
  690. echo "".$request->get('password');
  691. $detail->name = $request->get('aname');
  692. $detail->ic = $request->get('ic');
  693. $detail->email = $request->get('email');
  694. $detail->phone = $request->get('phone');
  695. $detail->company_id = $request->get('vendor');
  696. $detail->save();
  697. $user->email = $request->get('email');
  698. if(!empty($getpass))
  699. {
  700. $validator = Validator::make($request->all(), [
  701. 'password' => 'min:8|confirmed',
  702. ]);
  703. if ($validator->fails())
  704. {
  705. return redirect()->back()->withInput()->withErrors($validator);
  706. }
  707. $detail->password = $pass;
  708. $user->password = $pass;
  709. $detail->save();
  710. $user->save();
  711. }
  712. else
  713. {
  714. $detail->save();
  715. $user->save();
  716. }
  717. return redirect()->route('agentList')->with('success_msg', 'message');
  718. }
  719. else
  720. {
  721. echo "email is used";
  722. return redirect()->back()->withInput()->withErrors('Email already exist!');
  723. }
  724. }
  725. }
  726. public function filterDocket($year, $month)
  727. {
  728. $year = $year;
  729. $month = $month;
  730. $nested_data = array();
  731. $arr = array();
  732. $i=0;
  733. if($year=='null' && $month=='null')
  734. {
  735. $docket = Docket::with('WorkOrder')->orderBy('created_at', 'desc')->get();
  736. $arr = array();
  737. $i = 0;$n1 = '';
  738. $nested_data = array();
  739. $test = 0;
  740. foreach ($docket as $a)
  741. {
  742. $i++;
  743. $building = "";
  744. if(!empty($a->WorkOrder->_id)){
  745. $subDetail = Form::with('WorkOrder','Subscriber')->where('_id',$a->WorkOrder->_id)->first();
  746. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  747. $tempInstaller = Staff::with('StaffDetail')->withTrashed()->where('_id',$a->installer_id)->first();
  748. if(!empty($subDetail->Subscriber->building_name))
  749. $building=$subDetail->Subscriber->building_name;
  750. else
  751. $building=$subDetail->Subscriber->company_name;
  752. array_push($nested_data, array(
  753. 'index' => $n1.$i,
  754. 'docket_id' => $a->docket_id,
  755. 'work_order_id' => $a->work_order_id,
  756. 'nature_work' => $a->nature_work,
  757. 'contractor_id' => $contractor->name,
  758. 'installer_name' => $tempInstaller->StaffDetail->name,
  759. 'customer_id' => $building,
  760. 'installer_id' => $tempInstaller->StaffDetail->phone,
  761. 'end_job' => $a->end_job,
  762. 'rating' => round((($a->Rating1 + $a->Rating2 + $a->Rating3)/15) * 100)."%",
  763. ));
  764. }
  765. }
  766. }
  767. elseif($year!='' && $month=='null')
  768. {
  769. $timestamp = $year."-01-01 00:00:00.000Z";
  770. $masa = strtotime($timestamp);
  771. $go = Carbon::createFromTimestamp($masa);
  772. $go2 = Carbon::createFromTimestamp($masa);
  773. $end_year = $go2->endOfYear();
  774. // $time = Carbon::createFromTimeString($timestamp);
  775. // echo $month;
  776. $docket = Docket::with('WorkOrder')->whereBetween('created_at', [$go, $end_year])->orderBy('created_at', 'desc')->get();
  777. $arr = array();
  778. $i = 0;$n1 = '';
  779. $nested_data = array();
  780. $test = 0;
  781. foreach ($docket as $a)
  782. {
  783. $i++;
  784. $building = "";
  785. if(!empty($a->WorkOrder->_id)){
  786. $subDetail = Form::with('WorkOrder','Subscriber')->where('_id',$a->WorkOrder->_id)->first();
  787. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  788. $tempInstaller = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  789. if(!empty($subDetail->Subscriber->building_name))
  790. $building=$subDetail->Subscriber->building_name;
  791. else
  792. $building=$subDetail->Subscriber->company_name;
  793. array_push($nested_data, array(
  794. 'index' => $n1.$i,
  795. 'docket_id' => $a->docket_id,
  796. 'work_order_id' => $a->work_order_id,
  797. 'nature_work' => $a->nature_work,
  798. 'contractor_id' => $contractor->name,
  799. 'installer_name' => $tempInstaller->name,
  800. 'customer_id' => $building,
  801. 'installer_id' => $tempInstaller->phone,
  802. 'end_job' => $a->end_job,
  803. 'rating' => round((($a->Rating1 + $a->Rating2 + $a->Rating3)/15) * 100)."%",
  804. ));
  805. }
  806. }
  807. }
  808. elseif($year!='' && $month !='')
  809. {
  810. $timestamp = $year."-".$month."-01 00:00:00.000Z";
  811. $masa = strtotime($timestamp);
  812. $go = Carbon::createFromTimestamp($masa);
  813. $go2 = Carbon::createFromTimestamp($masa);
  814. $end_year = $go2->endOfMonth();
  815. // $time = Carbon::createFromTimeString($timestamp);
  816. // $docket = Docket::whereBetween('created_at', [$go, $end_year])->get();
  817. $docket = Docket::with('WorkOrder')->whereBetween('created_at', [$go, $end_year])->orderBy('created_at', 'desc')->get();
  818. $arr = array();
  819. $i = 0;$n1 = '';
  820. $nested_data = array();
  821. $test = 0;
  822. foreach ($docket as $a)
  823. {
  824. $i++;
  825. $building = "";
  826. if(!empty($a->WorkOrder->_id)){
  827. $subDetail = Form::with('WorkOrder','Subscriber')->where('_id',$a->WorkOrder->_id)->first();
  828. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  829. $tempInstaller = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  830. if(!empty($subDetail->Subscriber->building_name))
  831. $building=$subDetail->Subscriber->building_name;
  832. else
  833. $building=$subDetail->Subscriber->company_name;
  834. array_push($nested_data, array(
  835. 'index' => $n1.$i,
  836. 'docket_id' => $a->docket_id,
  837. 'work_order_id' => $a->work_order_id,
  838. 'nature_work' => $a->nature_work,
  839. 'contractor_id' => $contractor->name,
  840. 'installer_name' => $tempInstaller->name,
  841. 'customer_id' => $building,
  842. 'installer_id' => $tempInstaller->phone,
  843. 'end_job' => $a->end_job,
  844. 'rating' => round((($a->Rating1 + $a->Rating2 + $a->Rating3)/15) * 100)."%",
  845. ));
  846. }
  847. }
  848. }
  849. return \DataTables::of($nested_data)->make(true);
  850. }
  851. public function requestClaim(Request $request)
  852. {
  853. $claim = DealerClaim::where('_id',$request->id)->first();
  854. // $agentdetail = StaffDetailLaravel::where('email',$request->email)->first();
  855. $mytime = Carbon::now();
  856. if(!empty($claim))
  857. {
  858. $claim->claim_dt = $mytime->toDateTimeString();
  859. $claim->save();
  860. return 'true';
  861. }
  862. else
  863. {
  864. return 'false';
  865. }
  866. }
  867. public function docketList()
  868. {
  869. $id = Auth::guard('ms')->id();
  870. $user = Staff::with('StaffDetail')->find($id);
  871. return view('market.docket',compact('user'));
  872. }
  873. public function getDocketList()
  874. {
  875. $id = Auth::guard('ms')->id();
  876. $user = Staff::with('StaffDetail')->find($id);
  877. $docket = Docket::with('WorkOrder')->orderBy('created_at', 'desc')->get();
  878. $arr = array();
  879. $i = 0;$n1 = '';
  880. $nested_data = array();
  881. $test = 0;
  882. $curr = Carbon::now()->getTimestamp();
  883. foreach ($docket as $a)
  884. {
  885. $i++;
  886. $building = "";
  887. if(!empty($a->WorkOrder->_id)){
  888. $subDetail = Form::with('WorkOrder','Subscriber')->where('_id',$a->WorkOrder->_id)->first();
  889. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  890. $tempInstaller = Staff::with('StaffDetail')->withTrashed()->where('_id',$a->installer_id)->first();
  891. $reg_time = $a->created_at;
  892. $expiry_date = $reg_time->addDays(3);
  893. $expiry_date = $expiry_date->getTimestamp();
  894. $n1="";
  895. if($curr < $expiry_date) {
  896. $n1 = "New/";
  897. }
  898. if(!empty($subDetail->Subscriber->building_name))
  899. $building=$subDetail->Subscriber->building_name;
  900. else
  901. $building=$subDetail->Subscriber->company_name;
  902. array_push($nested_data, array(
  903. 'index' => $n1.$i,
  904. 'docket_id' => $a->docket_id,
  905. 'work_order_id' => $a->work_order_id,
  906. 'nature_work' => $a->nature_work,
  907. 'contractor_id' => $contractor->name,
  908. 'installer_name' => $tempInstaller->StaffDetail->name,
  909. 'customer_id' => $building,
  910. 'installer_id' => $tempInstaller->StaffDetail->phone,
  911. 'end_job' => $a->end_job,
  912. 'rating' => round((($a->Rating1 + $a->Rating2 + $a->Rating3)/15) * 100)."%",
  913. ));
  914. }
  915. }
  916. return \DataTables::of($nested_data)->make(true);
  917. }
  918. public function updateClaimDate(Request $request)
  919. {
  920. $claim = DealerClaim::where("_id", $request->id)->first();
  921. if(!empty($claim))
  922. {
  923. $claim->claim_dt = $request->date." ".$request->time;
  924. $claim->save();
  925. return 'true';
  926. }
  927. else
  928. return 'false';
  929. }
  930. public function downloadPDF()
  931. {
  932. $pdf = PDF::loadView('pdf.docket-pdf');
  933. return $pdf->download('invoice.pdf');
  934. // return view('pdf.docket-pdf');
  935. }
  936. public function woList()
  937. {
  938. $id = Auth::guard('ms')->id();
  939. $user = Staff::with('StaffDetail')->find($id);
  940. return view('market.workorder',compact('user'));
  941. }
  942. public function getWoList()
  943. {
  944. $id = Auth::guard('ms')->id();
  945. $user = Staff::with('StaffDetail')->find($id);
  946. // $marketdetail= WorkOrder::with('Form')->where('_id','5b4c18a4ee0dc2b707473b7d')->first();
  947. // $b = array();
  948. $r=0;$b=0;
  949. $subDetail = Form::with('WorkOrder','Subscriber')->orderBy('created_at','desc')->get();
  950. $curr = Carbon::now()->getTimestamp();
  951. $i = 0;
  952. $nested_data = array();
  953. foreach($subDetail as $a)
  954. {
  955. $var1="";
  956. $contractor_name="";
  957. if(empty($a->WorkOrder)){}
  958. else
  959. {
  960. $i++;
  961. $staff = StaffDetail::where('_id', $a->WorkOrder->installer_id)->withTrashed()->first();
  962. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  963. if(!empty($staff))
  964. {
  965. $var1 =$staff->name;
  966. }
  967. if(!empty($contractor))
  968. {
  969. $contractor_name =$contractor->name;
  970. }
  971. $reg_time = $a->created_at;
  972. $expiry_date = $reg_time->addDays(3);
  973. $expiry_date = $expiry_date->getTimestamp();
  974. $n1="";
  975. if($curr < $expiry_date) {
  976. $n1 = "New/";
  977. }
  978. $building = '';
  979. if($a->type_application == 'R'){
  980. $building = $a->Subscriber->building_name;
  981. }else if($a->type_application == 'B'){
  982. $building = $a->Subscriber->company_name;
  983. }
  984. if(!empty($a->Subscriber)){
  985. array_push($nested_data, array(
  986. 'index' => $n1.$i.$a->type_application,
  987. 'nature_work' => $a->WorkOrder->nature_work,
  988. 'wo'=>$a->WorkOrder->wo,
  989. 'customer_name' => $a->Subscriber->name,
  990. 'customer_phone' => $a->Subscriber->phone1,
  991. 'customer_unit' => $a->Subscriber->unit_no,
  992. 'customer_building' => $building,
  993. 'customer_postcode' => $a->Subscriber->postcode,
  994. 'customer_city' => $a->Subscriber->city,
  995. 'contractor_id' => $contractor_name,
  996. 'installer_id' => $var1,
  997. 'dateTimeEnd' => $a->WorkOrder->dateTimeEnd,
  998. 'status' => $a->WorkOrder->status,
  999. ));
  1000. }
  1001. }
  1002. }
  1003. return \DataTables::of($nested_data)->make(true);
  1004. }
  1005. public function filterWo($year, $month, $status)
  1006. {
  1007. $r = 0;
  1008. $b = 0;
  1009. $nested_data = array();
  1010. if($year == 'null' && $month == 'null' & $status !='')
  1011. {
  1012. $i = 0;
  1013. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1014. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->where('status', $status)->get();
  1015. foreach($wo as $a)
  1016. {
  1017. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1018. $contractor = Company::where('_id', $a->contractor_id)->first();
  1019. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1020. $var1 = "";
  1021. if(!empty($installer)){
  1022. $var1 =$installer->name;
  1023. }
  1024. if($a->Form->type_application == "R")
  1025. {
  1026. $r++; $n1 = 'R';
  1027. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1028. if(!empty($customer)){
  1029. array_push($nested_data, array(
  1030. 'index' => $r.$n1,
  1031. 'nature_work' => $a->nature_work,
  1032. 'wo'=>$a->wo,
  1033. 'customer_name' => $customer->name,
  1034. 'customer_phone' => $customer->phone1,
  1035. 'customer_unit' => $customer->unit_no,
  1036. 'customer_building' => $customer->building_name,
  1037. 'customer_postcode' => $customer->postcode,
  1038. 'customer_city' => $customer->city,
  1039. 'contractor_id' => $contractor->name,
  1040. 'installer_id' => $var1,
  1041. 'dateTimeEnd' => $a->dateTimeEnd,
  1042. 'status' => $a->status,
  1043. ));
  1044. }
  1045. }
  1046. if($a->Form->type_application == "B")
  1047. {
  1048. $b++; $n1 = 'B';
  1049. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1050. if(!empty($customer)){
  1051. array_push($nested_data, array(
  1052. 'index' => $b.$n1,
  1053. 'nature_work' => $a->nature_work,
  1054. 'wo'=>$a->wo,
  1055. 'customer_name' => $customer->name,
  1056. 'customer_phone' => $customer->phone1,
  1057. 'customer_unit' => '-',
  1058. 'customer_building' => $customer->company_name,
  1059. 'customer_postcode' => $customer->postcode,
  1060. 'customer_city' => $customer->city,
  1061. 'contractor_id' => $contractor->name,
  1062. 'installer_id' => $var1,
  1063. 'dateTimeEnd' => $a->dateTimeEnd,
  1064. 'status' => $a->status,
  1065. ));
  1066. }
  1067. }
  1068. }
  1069. }
  1070. if($year=='null' && $month == 'null' & $status == 'null')
  1071. {
  1072. $i = 0;
  1073. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1074. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart','desc')->get();
  1075. foreach($wo as $a)
  1076. {
  1077. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1078. $contractor = Company::where('_id', $a->contractor_id)->first();
  1079. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1080. $var1 = "";
  1081. if(!empty($installer)){
  1082. $var1 =$installer->name;
  1083. }
  1084. if($a->Form->type_application == "R")
  1085. {
  1086. $r++; $n1 = 'R';
  1087. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1088. if(!empty($customer)){
  1089. array_push($nested_data, array(
  1090. 'index' => $r.$n1,
  1091. 'nature_work' => $a->nature_work,
  1092. 'wo'=>$a->wo,
  1093. 'customer_name' => $customer->name,
  1094. 'customer_phone' => $customer->phone1,
  1095. 'customer_unit' => $customer->unit_no,
  1096. 'customer_building' => $customer->building_name,
  1097. 'customer_postcode' => $customer->postcode,
  1098. 'customer_city' => $customer->city,
  1099. 'contractor_id' => $contractor->name,
  1100. 'installer_id' => $var1,
  1101. 'dateTimeEnd' => $a->dateTimeEnd,
  1102. 'status' => $a->status,
  1103. ));
  1104. }
  1105. }
  1106. if($a->Form->type_application == "B")
  1107. {
  1108. $b++; $n1 = 'B';
  1109. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1110. if(!empty($customer)){
  1111. array_push($nested_data, array(
  1112. 'index' => $b.$n1,
  1113. 'nature_work' => $a->nature_work,
  1114. 'wo'=>$a->wo,
  1115. 'customer_name' => $customer->name,
  1116. 'customer_phone' => $customer->phone1,
  1117. 'customer_unit' => '-',
  1118. 'customer_building' => $customer->company_name,
  1119. 'customer_postcode' => $customer->postcode,
  1120. 'customer_city' => $customer->city,
  1121. 'contractor_id' => $contractor->name,
  1122. 'installer_id' => $var1,
  1123. 'dateTimeEnd' => $a->dateTimeEnd,
  1124. 'status' => $a->status,
  1125. ));
  1126. }
  1127. }
  1128. }
  1129. }
  1130. if($year!='' && $month!='' && $status !='')
  1131. {
  1132. $start_month = $year."-".$month."-01 00:00:00";
  1133. $end_month = $year."-".$month."-32 23:59:59";
  1134. // $wo = WorkOrder::orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->where('status',$status)->get();
  1135. $i = 0;
  1136. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1137. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->where('status', $status)->get();
  1138. foreach($wo as $a)
  1139. {
  1140. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1141. $contractor = Company::where('_id', $a->contractor_id)->first();
  1142. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1143. $var1 = "";
  1144. if(!empty($installer)){
  1145. $var1 =$installer->name;
  1146. }
  1147. if($a->Form->type_application == "R")
  1148. {
  1149. $r++; $n1 = 'R';
  1150. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1151. if(!empty($customer)){
  1152. array_push($nested_data, array(
  1153. 'index' => $r.$n1,
  1154. 'nature_work' => $a->nature_work,
  1155. 'wo'=>$a->wo,
  1156. 'customer_name' => $customer->name,
  1157. 'customer_phone' => $customer->phone1,
  1158. 'customer_unit' => $customer->unit_no,
  1159. 'customer_building' => $customer->building_name,
  1160. 'customer_postcode' => $customer->postcode,
  1161. 'customer_city' => $customer->city,
  1162. 'contractor_id' => $contractor->name,
  1163. 'installer_id' => $var1,
  1164. 'dateTimeEnd' => $a->dateTimeEnd,
  1165. 'status' => $a->status,
  1166. ));
  1167. }
  1168. }
  1169. if($a->Form->type_application == "B")
  1170. {
  1171. $b++; $n1 = 'B';
  1172. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1173. if(!empty($customer)){
  1174. array_push($nested_data, array(
  1175. 'index' => $b.$n1,
  1176. 'nature_work' => $a->nature_work,
  1177. 'wo'=>$a->wo,
  1178. 'customer_name' => $customer->name,
  1179. 'customer_phone' => $customer->phone1,
  1180. 'customer_unit' => '-',
  1181. 'customer_building' => $customer->company_name,
  1182. 'customer_postcode' => $customer->postcode,
  1183. 'customer_city' => $customer->city,
  1184. 'contractor_id' => $contractor->name,
  1185. 'installer_id' => $var1,
  1186. 'dateTimeEnd' => $a->dateTimeEnd,
  1187. 'status' => $a->status,
  1188. ));
  1189. }
  1190. }
  1191. }
  1192. }
  1193. if($year!='' && $month!='' && $status =='null')
  1194. {
  1195. $start_month = $year."-".$month."-01 00:00:00";
  1196. $end_month = $year."-".$month."-32 23:59:59";
  1197. $i = 0;
  1198. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1199. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->get();
  1200. foreach($wo as $a)
  1201. {
  1202. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1203. $contractor = Company::where('_id', $a->contractor_id)->first();
  1204. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1205. $var1 = "";
  1206. if(!empty($installer)){
  1207. $var1 =$installer->name;
  1208. }
  1209. if($a->Form->type_application == "R")
  1210. {
  1211. $r++; $n1 = 'R';
  1212. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1213. if(!empty($customer)){
  1214. array_push($nested_data, array(
  1215. 'index' => $r.$n1,
  1216. 'nature_work' => $a->nature_work,
  1217. 'wo'=>$a->wo,
  1218. 'customer_name' => $customer->name,
  1219. 'customer_phone' => $customer->phone1,
  1220. 'customer_unit' => $customer->unit_no,
  1221. 'customer_building' => $customer->building_name,
  1222. 'customer_postcode' => $customer->postcode,
  1223. 'customer_city' => $customer->city,
  1224. 'contractor_id' => $contractor->name,
  1225. 'installer_id' => $var1,
  1226. 'dateTimeEnd' => $a->dateTimeEnd,
  1227. 'status' => $a->status,
  1228. ));
  1229. }
  1230. }
  1231. if($a->Form->type_application == "B")
  1232. {
  1233. $b++; $n1 = 'B';
  1234. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1235. if(!empty($customer)){
  1236. array_push($nested_data, array(
  1237. 'index' => $b.$n1,
  1238. 'nature_work' => $a->nature_work,
  1239. 'wo'=>$a->wo,
  1240. 'customer_name' => $customer->name,
  1241. 'customer_phone' => $customer->phone1,
  1242. 'customer_unit' => '-',
  1243. 'customer_building' => $customer->company_name,
  1244. 'customer_postcode' => $customer->postcode,
  1245. 'customer_city' => $customer->city,
  1246. 'contractor_id' => $contractor->name,
  1247. 'installer_id' => $var1,
  1248. 'dateTimeEnd' => $a->dateTimeEnd,
  1249. 'status' => $a->status,
  1250. ));
  1251. }
  1252. }
  1253. }
  1254. }
  1255. return \DataTables::of($nested_data)->make(true);
  1256. }
  1257. /**
  1258. ALL DOWN HERE ARE FOR TESTING AND UTILITIES PURPOSES
  1259. **/
  1260. public function woToLaravel()
  1261. {
  1262. }
  1263. public function checktry()
  1264. {
  1265. $data = Subscriber::where('wo','!=','')->get();
  1266. $wo = WorkOrder::all()->toArray();
  1267. $adawork = array();
  1268. $newarr = array();
  1269. $hmm = array();
  1270. $i = 0;
  1271. foreach($data as $d){
  1272. if(array_search($d->wo, array_column($wo, 'wo')) !== False) { // search value in the array
  1273. // echo "FOUND";
  1274. }else {
  1275. $adawork[] = $d->wo;
  1276. $i++;
  1277. }
  1278. }
  1279. dd($adawork);
  1280. }
  1281. //Insert data into Commission_Laravel table
  1282. public function commissionlara()
  1283. {
  1284. $olddata = Commission::all();
  1285. foreach($olddata as $od)
  1286. {
  1287. $subsData = [
  1288. 'formT' => $od['formT'],
  1289. 'ranges' => $od['ranges'],
  1290. 'comm' => $od['comm'],
  1291. 'category' => $od['category'],
  1292. 'contract' => $od['contract'],
  1293. 'reg_time' => $od['reg_time'],
  1294. 'packageR' => $od['packageR'],
  1295. ];
  1296. Commission::create($subsData);
  1297. }
  1298. return "success";
  1299. }
  1300. //Insert data into Company_Laravel table
  1301. public function companylara()
  1302. {
  1303. $olddata = Company::all();
  1304. foreach($olddata as $od)
  1305. {
  1306. $subsData = [
  1307. 'name' => $od['name'],
  1308. 'address' => $od['address'],
  1309. 'city' => $od['city'],
  1310. 'state' => $od['state'],
  1311. 'postcode' => $od['postcode'],
  1312. 'color' => $od['color'],
  1313. 'team' => $od['team'],
  1314. 'status' => $od['status'],
  1315. 'reg_time' => $od['reg_time'],
  1316. ];
  1317. Company::create($subsData);
  1318. }
  1319. }
  1320. //Insert data into Claim_Laravel table
  1321. public function claimtolara()
  1322. {
  1323. $olddata = DealerClaim::all();
  1324. foreach($olddata as $od)
  1325. {
  1326. $subsData = [
  1327. '_id' => $od['_id'],
  1328. 'formT' => $od['formT'],
  1329. 'wo' => $od['wo'],
  1330. 'dateTimeStart' => $od['dateTimeEnd'],
  1331. 'customer_id' => $od['customer_id'],
  1332. 'contractor_id' => $od['contractor_id'],
  1333. 'installer_id' => $od['installer_id'],
  1334. 'nature_work' => $od['nature_work'],
  1335. 'sub_category' => $od['sub_category'],
  1336. 'img_url' => $od['img_url'],
  1337. 'docket' => $od['docket'],
  1338. 'status'=>$od['status'],
  1339. 'remark'=>$od['remark'],
  1340. 'remarks_inst'=>$od['remarks_inst'],
  1341. 'customer_code'=>$od['customer_code'],
  1342. 'package_bandwidth'=>$od['package_bandwidth'],
  1343. 'subnet_mask'=>$od['subnet_mask'],
  1344. 'login_id'=>$od['login_id'],
  1345. 'password'=>$od['password'],
  1346. 'wan_ip'=>$od['wan_ip'],
  1347. 'lan_ip'=>$od['lan_ip'],
  1348. 'gateway'=>$od['getaway'],
  1349. 'service_id1'=>$od['service_id2'],
  1350. 'ip_address_onu'=>$od['ip_address_onu'],
  1351. 'gateway_onu'=>$od['gateaway_onu'],
  1352. 'subnet_mask_onu'=>$od['subnet_mask_onu'],
  1353. 'ip_address_srp'=>$od['ip_address_srp'],
  1354. 'dectphone1'=>$od['dectphone1'],
  1355. 'dectphone2'=>$od['dectphone2'],
  1356. 'onu'=>$od['onu'],
  1357. 'router'=>$od['router'],
  1358. 'wifi_extender'=>$od['wifi_extender'],
  1359. 'reg_time'=>$od['reg_time'],
  1360. ];
  1361. DealerClaim::create($subsData);
  1362. }
  1363. }
  1364. //Add total form by month to Claim Laravel collection
  1365. public function claimaddtotal()
  1366. {
  1367. $getdata = DealerClaim::all();
  1368. $total = 0;
  1369. foreach($getdata as $a)
  1370. {
  1371. if($a->activated_my == "2/2019")
  1372. {
  1373. $total += 1;
  1374. }
  1375. }
  1376. $adddata = DealerClaim::all();
  1377. foreach($adddata as $a)
  1378. {
  1379. if($a->activated_my == "2/2019")
  1380. {
  1381. $a->total_form_by_month = $total;
  1382. $a->save();
  1383. }
  1384. }
  1385. }
  1386. public function generateWorkOrderPDF($wo){
  1387. $id = Auth::guard('ms')->id();
  1388. $user = Staff::with('StaffDetail')->find($id);
  1389. $wo = WorkOrder::where('wo',$wo)->first();
  1390. $form = Form::with('PackageDetail','Subscriber')->where('_id',$wo->_id)->first();
  1391. $product = Product::where('formT',$form->type_application)->where('speed',$form->PackageDetail->name)->first();
  1392. if(empty($form->customer_category)){
  1393. $category = '';
  1394. }else {
  1395. $category = $form->customer_category;
  1396. }
  1397. if(empty($product)){
  1398. $product = 'RMbps';
  1399. }else {
  1400. $product = $product->package_name;
  1401. }
  1402. $created_by = Staff::with('StaffDetail')->where("_id",$wo->created_by)->first();
  1403. if(empty($created_by)){
  1404. $created_by = '';
  1405. }
  1406. $created_at = Carbon::parse($wo->created_at)->toDateTimeString();
  1407. $address = '';
  1408. if($form->type_application == 'R'){
  1409. if($form->Subscriber->street != ''){
  1410. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1411. }else {
  1412. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1413. }
  1414. }else if($form->type_application == 'B'){
  1415. if($form->Subscriber->unit_no != ''){
  1416. $address = $form->Subscriber->unit_no. ', '.$form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1417. }else {
  1418. $address = $form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1419. }
  1420. }
  1421. $pdf = PDF::loadView('pdf.workorder-pdf',compact('wo','form','product','created_at','created_by','address', 'category'));
  1422. $pdf->setPaper('A4', 'potrait');
  1423. return $pdf->stream();
  1424. }
  1425. public function generateDocketPDF($do)
  1426. {
  1427. $id = Auth::guard('ms')->id();
  1428. $user = Staff::with('StaffDetail')->find($id);
  1429. $docket = Docket::with('WorkOrder')->where('docket_id',$do)->first();
  1430. if(!empty($docket)){
  1431. $form = Form::with('Subscriber','PackageDetail')->where('_id',$docket->WorkOrder->_id)->first();
  1432. $address = '';
  1433. if($form->type_application == 'R'){
  1434. if($form->Subscriber->street != ''){
  1435. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1436. }else {
  1437. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1438. }
  1439. }else if($form->type_application == 'B'){
  1440. if($form->Subscriber->unit_no != ''){
  1441. $address = $form->Subscriber->unit_no. ', '.$form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1442. }else {
  1443. $address = $form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1444. }
  1445. }
  1446. if (empty($form->customer_category)){
  1447. $category = '';
  1448. }else {
  1449. $category = $form->customer_category;
  1450. }
  1451. $product = Product::where('formT',$form->type_application)->where('speed',$form->PackageDetail->name)->first();
  1452. $installer = Staff::with('StaffDetail')->where('_id',$docket->installer_id)->withTrashed()->first();
  1453. if(empty($product)){
  1454. $product = 'RMbps';
  1455. }else {
  1456. $product = $product->package_name;
  1457. }
  1458. $dateTime = Carbon::parse($docket->WorkOrder->dateTimeStart)->toDateTimeString();
  1459. $edateTime = Carbon::parse($docket->end_job)->toDateTimeString();
  1460. $pdf = PDF::loadView('pdf.docket-pdf',compact('docket','form','address','product','installer','dateTime','edateTime', 'category'));
  1461. $pdf->setPaper('A4', 'potrait');
  1462. return $pdf->stream();
  1463. }
  1464. }
  1465. public function mClaimAll($agent_id)
  1466. {
  1467. $id = Auth::guard('ms')->id();
  1468. $user = Staff::with('StaffDetail')->find($id);
  1469. $getid = $agent_id;
  1470. $temp = StaffDetail::where('_id', $agent_id)->first();
  1471. $company = $temp->company_id;
  1472. return view('market.claim_list',compact('user','getid','company'));
  1473. }
  1474. //Show claim list by company
  1475. public function mClaimListAll($company)
  1476. {
  1477. $id = Auth::guard('ms')->id();
  1478. $user = Staff::with('StaffDetail')->find($id);
  1479. $dealer_claimAll = DealerClaim::where('dealer',$company)->orderBy('activated_dt','desc')->get();
  1480. $i = 0;
  1481. $nested_data = array();
  1482. foreach ($dealer_claimAll as $c){
  1483. $customer = Subscriber::with('Form')->where('_id', $c->customer_id)->first();
  1484. $address = ''; $name = '';
  1485. if($customer->Form->type_application == 'R'){
  1486. if($customer->street != ''){
  1487. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1488. }else {
  1489. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1490. }
  1491. $name = $customer->name;
  1492. }else if($customer->Form->type_application == 'B'){
  1493. if($customer->unit_no != ''){
  1494. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1495. }else {
  1496. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1497. }
  1498. $name = $customer->company_name;
  1499. }
  1500. $i++;
  1501. array_push($nested_data, array(
  1502. 'index' => $c->formT,
  1503. 'contract' => $c->contract,
  1504. 'wo' => $c->wo,
  1505. 'activated_dt' => $c->activated_dt,
  1506. 'name' => $name,
  1507. 'address' => $address,
  1508. 'package' => $c->package,
  1509. 'retail_price' => 'RM '.$c->retail_price,
  1510. 'incentives1' => '',
  1511. 'incentives2' => '',
  1512. 'total' => '',
  1513. 'claimed' => $c->laim_dt,
  1514. 'action' => 'null',
  1515. ));
  1516. }
  1517. return \DataTables::of($nested_data)->make(true);
  1518. }
  1519. // Get Dealer Claim Residential
  1520. public function returnDataR($company,$year,$month){
  1521. $dataCR = DealerClaim::where('formT','R')->where('dealer',$company)->orderBy('activated_dt', 'desc')->get();
  1522. $final = array();
  1523. // Month & Year
  1524. $mY = '';
  1525. if($year != 'null' && $month != 'null'){
  1526. $mY = $month.'/'.$year;
  1527. }
  1528. if($mY != ''){
  1529. $data12 = array(); $data24 = array();
  1530. $countD12 = 0; $countD24 = 0;
  1531. foreach($dataCR as $dc){
  1532. if($dc->activated_my == $mY || $dc->activated_my == '0'.$mY ){
  1533. if($dc->contract == "12"){
  1534. $data12[] = $dc;
  1535. }else if($dc->contract == "24"){
  1536. $data24[] = $dc;
  1537. }
  1538. }
  1539. }
  1540. $countD24 = count($data24);
  1541. $countD12 = count($data12);
  1542. $comm = Commission::where('formT','R')->get();
  1543. $commV12 = 0; $commV24 = 0;
  1544. $comm12 = ''; $comm24 = '';
  1545. foreach($comm as $c){
  1546. if($c->contract =='12'){
  1547. if(strpos($c->ranges, '>') !== false) {
  1548. $pieces = explode(">", $c->ranges);
  1549. if($countD12 >= intval($pieces[1])){
  1550. $commV12 = floatval($c->comm)/100;
  1551. $comm12 = $c->comm.'%';
  1552. }
  1553. }
  1554. if(strpos($c->ranges,'-') !== false){
  1555. $pieces = explode("-", $c->ranges);
  1556. if($countD12 >= intval($pieces[0]) && $countD12 <= intval($pieces[1])){
  1557. $commV12 = floatval($c->comm)/100;
  1558. $comm12 = $c->comm.'%';
  1559. }
  1560. }
  1561. }else if($c->contract =='24'){
  1562. // Contract => 24
  1563. if($countD24 != 0){
  1564. if(strpos($c->ranges, '>') !== false) {
  1565. $pieces = explode(">", $c->ranges);
  1566. if($countD24 > intval($pieces[1])){
  1567. $commV24 = floatval($c->comm)/100;
  1568. $comm24 = $c->comm.'%';
  1569. }
  1570. }
  1571. if(strpos($c->ranges,'-') !== false){
  1572. $pieces = explode("-", $c->ranges);
  1573. if($countD24 >= intval($pieces[0]) && $countD24 <= intval($pieces[1])){
  1574. $commV24 = floatval($c->comm)/100;
  1575. $comm24 = $c->comm.'%';
  1576. }
  1577. }
  1578. }
  1579. }
  1580. }
  1581. foreach ($data12 as $key => $d) {
  1582. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1583. $address = ''; $name = '';
  1584. if($customer->Form->type_application == 'R'){
  1585. if($customer->street != ''){
  1586. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1587. }else {
  1588. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1589. }
  1590. $name = $customer->name;
  1591. }else if($customer->Form->type_application == 'B'){
  1592. if($customer->unit_no != ''){
  1593. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1594. }else {
  1595. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1596. }
  1597. $name = $customer->company_name;
  1598. }
  1599. $final[] = array(
  1600. 'index' => $d['formT'],
  1601. 'contract' => $d['contract'],
  1602. 'wo' => $d['wo'],
  1603. 'activation' => $d['activated_dt'],
  1604. 'name' => $name,
  1605. 'address' => $address,
  1606. 'package' => $d['package'],
  1607. 'retail_price' => 'RM '.$d['retail_price'],
  1608. 'incentives1' => $comm12,
  1609. 'incentives2' => '',
  1610. 'total' => 'RM '.number_format($d['retail_price']*$commV12,2),
  1611. 'claim' => $d['claim_dt'],
  1612. );
  1613. }
  1614. foreach ($data24 as $key => $d) {
  1615. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1616. $address = ''; $name = '';
  1617. if($customer->Form->type_application == 'R'){
  1618. if($customer->street != ''){
  1619. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1620. }else {
  1621. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1622. }
  1623. $name = $customer->name;
  1624. }else if($customer->Form->type_application == 'B'){
  1625. if($customer->unit_no != ''){
  1626. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1627. }else {
  1628. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1629. }
  1630. $name = $customer->company_name;
  1631. }
  1632. $final[] = array(
  1633. 'index' => $d['formT'],
  1634. 'contract' => $d['contract'],
  1635. 'wo' => $d['wo'],
  1636. 'activation' => $d['activated_dt'],
  1637. 'name' => $name,
  1638. 'address' => $address,
  1639. 'package' => $d['package'],
  1640. 'retail_price' => 'RM '.$d['retail_price'],
  1641. 'incentives1' => $comm24,
  1642. 'incentives2' => '',
  1643. 'total' => 'RM '.number_format($d['retail_price']*$commV24,2),
  1644. 'claim' => $d['claim_dt'],
  1645. );
  1646. }
  1647. }else {
  1648. foreach ($dataCR as $c){
  1649. $customer = Subscriber::with('Form')->where('_id', $c['customer_id'])->first();
  1650. $address = ''; $name = '';
  1651. if($customer->Form->type_application == 'R'){
  1652. if($customer->street != ''){
  1653. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1654. }else {
  1655. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1656. }
  1657. $name = $customer->name;
  1658. }else if($customer->Form->type_application == 'B'){
  1659. if($customer->unit_no != ''){
  1660. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1661. }else {
  1662. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1663. }
  1664. $name = $customer->company_name;
  1665. }
  1666. $final[] = array(
  1667. 'index' => $c['formT'],
  1668. 'contract' => $c['contract'],
  1669. 'wo' => $c['wo'],
  1670. 'activation' => $c['activated_dt'],
  1671. 'name' => $name,
  1672. 'address' => $address,
  1673. 'package' => $c['package'],
  1674. 'retail_price' => 'RM '.$c['retail_price'],
  1675. 'incentives1' => '',
  1676. 'incentives2' => '',
  1677. 'total' => '',
  1678. 'claim' => $c['claim_dt'],
  1679. );
  1680. }
  1681. }
  1682. return $final;
  1683. }
  1684. // Get Claim Business
  1685. public function returnDataB($company,$year,$month){
  1686. $dataCB = DealerClaim::where('formT','B')->where('dealer',$company)->orderBy('activated_dt', 'desc')->get();
  1687. $final = array();
  1688. // Month & Year
  1689. $mY = '';
  1690. if($year != 'null' && $month != 'null'){
  1691. $mY = $month.'/'.$year;
  1692. }
  1693. if($mY != ''){
  1694. /** Contract 12
  1695. // 1=>10-100 2=>300 3=>500 4=>1
  1696. **/
  1697. $data12_1 = array(); $data12_2 = array();
  1698. $data12_3 = array(); $data12_4 = array();
  1699. $countD12_1 = 0; $countD12_2 = 0;
  1700. $countD12_3 = 0; $countD12_4 = 0;
  1701. /** Contract 24
  1702. // 1=>10-100 2=>300 3=>500 4=>1
  1703. **/
  1704. $data24_1 = array(); $data24_2 = array();
  1705. $data24_3 = array(); $data24_4 = array();
  1706. $countD24_1 = 0; $countD24_2 = 0;
  1707. $countD24_3 = 0; $countD24_4 = 0;
  1708. foreach($dataCB as $dc){
  1709. if($dc->activated_my == $mY || $dc->activated_my == '0'.$mY){
  1710. if($dc->contract == "12" && ($dc->package == "10" || $dc->package == "30" || $dc->package == "50" || $dc->package == "100")){
  1711. $data12_1[] = $dc;
  1712. }else if($dc->contract == "12" && $dc->package == "300"){
  1713. $data12_2[] = $dc;
  1714. }else if($dc->contract == "12" && $dc->package == "500"){
  1715. $data12_3[] = $dc;
  1716. }else if($dc->contract == "12" && $dc->package == "1"){
  1717. $data12_4[] = $dc;
  1718. }else if($dc->contract == "24" && ($dc->package == "10" || $dc->package == "30" || $dc->package == "50" || $dc->package == "100")){
  1719. $data24_1[] = $dc;
  1720. }else if($dc->contract == "24" && $dc->package == "300"){
  1721. $data24_2[] = $dc;
  1722. }else if($dc->contract == "24" && $dc->package == "500"){
  1723. $data24_3[] = $dc;
  1724. }else if($dc->contract == "24" && $dc->package == "1"){
  1725. $data24_4[] = $dc;
  1726. }
  1727. }
  1728. }
  1729. $countD12_1 = count($data12_1); $countD12_2 = count($data12_2);
  1730. $countD12_3 = count($data12_3); $countD12_4 = count($data12_4);
  1731. $countD24_1 = count($data24_1); $countD24_2 = count($data24_2);
  1732. $countD24_3 = count($data24_3); $countD24_4 = count($data24_4);
  1733. $comm = Commission::where('formT','B')->get();
  1734. $commV12_1 = 0; $commV12_2 = 0;
  1735. $commV12_3 = 0; $commV12_4 = 0;
  1736. $commV24_1 = 0; $commV24_2 = 0;
  1737. $commV24_3 = 0; $commV24_4 = 0;
  1738. $comm12_1 = ''; $comm12_2 = '';
  1739. $comm12_3 = ''; $comm12_4 = '';
  1740. $comm24_1 = ''; $comm24_2 = '';
  1741. $comm24_3 = ''; $comm24_4 = '';
  1742. $addRM12_1 = ''; $addRM12_2 = '';
  1743. $addRM12_3 = ''; $addRM12_4 = '';
  1744. $addRM24_1 = ''; $addRM24_2 = '';
  1745. $addRM24_3 = ''; $addRM24_4 = '';
  1746. foreach($comm as $c){
  1747. /*** Contract 24 **/
  1748. if($c->contract =='24' && $c->packageR == "300"){
  1749. if(strpos($c->ranges, '>') !== false) {
  1750. $pieces = explode(">", $c->ranges);
  1751. if($countD24_2 >= intval($pieces[1])){
  1752. if(strpos($c->comm, 'RM') !== false) {
  1753. $comm24_2 = '+ ' .$c->comm;
  1754. $commV24_2 = '';
  1755. $comms = explode("RM", $c->comm);
  1756. $addRM24_2 = floatval($comms[1]);
  1757. }else {
  1758. $comms = explode("RM", $c->comm);
  1759. if(isset($comms[1])){
  1760. $comm24_2 = 'RM '.$comms[1];
  1761. $commV24_2 = floatval($comms[1]);
  1762. }else {
  1763. if($comms[0] != ''){
  1764. $comm24_2 = $comms[0].'%';
  1765. $commV24_2 = floatval($comms[0])/100;
  1766. }
  1767. }
  1768. }
  1769. }
  1770. }
  1771. }else if($c->contract =='24' && $c->packageR == "500"){
  1772. if(strpos($c->ranges, '>') !== false) {
  1773. $pieces = explode(">", $c->ranges);
  1774. if($countD24_3 >= intval($pieces[1])){
  1775. if(strpos($c->comm, 'RM') !== false) {
  1776. $comm24_3 = '+ ' .$c->comm;
  1777. $commV24_3 = '';
  1778. $comms = explode("RM", $c->comm);
  1779. $addRM24_3 = floatval($comms[1]);
  1780. }else {
  1781. $comms = explode("RM", $c->comm);
  1782. if(isset($comms[1])){
  1783. $comm24_3 = 'RM '.$comms[1];
  1784. $commV24_3 = floatval($comms[1]);
  1785. }else {
  1786. if($comms[0] != ''){
  1787. $comm24_3 = $comms[0].'%';
  1788. $commV24_3 = floatval($comms[0])/100;
  1789. }
  1790. }
  1791. }
  1792. }
  1793. }
  1794. }else if($c->contract =='24' && $c->packageR == "1"){
  1795. if(strpos($c->ranges, '>') !== false) {
  1796. $pieces = explode(">", $c->ranges);
  1797. if($countD24_4 >= intval($pieces[1])){
  1798. if(strpos($c->comm, 'RM') !== false) {
  1799. $comm24_4 = '+ ' .$c->comm;
  1800. $commV24_4 = '';
  1801. $comms = explode("RM", $c->comm);
  1802. $addRM24_4 = floatval($comms[1]);
  1803. }else {
  1804. $comms = explode("RM", $c->comm);
  1805. if(isset($comms[1])){
  1806. $comm24_4 = 'RM '.$comms[1];
  1807. $commV24_4 = floatval($comms[1]);
  1808. }else {
  1809. if($comms[0] != ''){
  1810. $comm24_4 = $comms[0].'%';
  1811. $commV24_4 = floatval($comms[0])/100;
  1812. }
  1813. }
  1814. }
  1815. }
  1816. }
  1817. }else if($c->contract =='24' && $c->packageR == "10,30,50,100"){
  1818. if(strpos($c->ranges,'-') !== false){
  1819. $pieces = explode("-", $c->ranges);
  1820. if($countD24_1 >= intval($pieces[0]) && $countD24_1 <= intval($pieces[1])){
  1821. if(strpos($c->comm, 'RM') !== false) {
  1822. $comm24_1 = '+ ' .$c->comm;
  1823. $commV24_1 = '';
  1824. $addRM24_1 = $c->comm;
  1825. }else {
  1826. $comms = explode("RM", $c->comm);
  1827. if(!empty($comms[1])){
  1828. $comm24_1 = 'RM '.$comms[1];
  1829. $commV24_1 = floatval($comms[1]);
  1830. }else {
  1831. if($comms[0] != ''){
  1832. $comm24_1 = $comms[0].'%';
  1833. $commV24_1 = floatval($comms[0])/100;
  1834. }
  1835. }
  1836. }
  1837. }
  1838. }
  1839. if(strpos($c->ranges, '>') !== false) {
  1840. $pieces1 = explode(">", $c->ranges);
  1841. if($countD24_1 >= intval($pieces1[1])){
  1842. if(strpos($c->comm, "RM") === true) {
  1843. $comm24_1 = '+ ' .$c->comm;
  1844. $commV24_1 = '';
  1845. $addRM24_1 = $c->comm;
  1846. }else {
  1847. $comms = explode("RM", $c->comm);
  1848. if(empty($comms[1])){
  1849. $comm24_1 = 'RM '.$comms[1];
  1850. $commV24_1 = floatval($comms[1]);
  1851. }else {
  1852. if($comms[0] != ''){
  1853. $comm24_1 = str_replace ('+ ','',$comms[0]).'%';
  1854. $commV24_1 = floatval($comms[0])/100;
  1855. $addRM24_1 = $comms[1];
  1856. }
  1857. }
  1858. }
  1859. }
  1860. }
  1861. }
  1862. /*** Contract 12 **/
  1863. else if($c->contract =='12' && $c->packageR == "10,30,50,100"){
  1864. if(strpos($c->ranges, '>') !== false) {
  1865. $pieces = explode(">", $c->ranges);
  1866. if($countD12_1 >= intval($pieces[1])){
  1867. if(strpos($c->comm, 'RM') !== false) {
  1868. $comm12_1 = '+ ' .$c->comm;
  1869. $commV12_1 = '';
  1870. $addRM12_1 = $c->comm;
  1871. }else {
  1872. $comms = explode("RM", $c->comm);
  1873. if(isset($comms[1])){
  1874. $comm12_1 = 'RM '.$comms[1];
  1875. $commV12_1 = floatval($comms[1]);
  1876. }else {
  1877. if($comms[0] != ''){
  1878. $comm12_1 = $comms[0].'%';
  1879. $commV12_1 = floatval($comms[0])/100;
  1880. }
  1881. }
  1882. }
  1883. }
  1884. }
  1885. if(strpos($c->ranges,'-') !== false){
  1886. $pieces = explode("-", $c->ranges);
  1887. if($countD12_1 >= intval($pieces[0]) && $countD12_1 <= intval($pieces[1])){
  1888. if(strpos($c->comm, 'RM') !== false) {
  1889. $comm12_1 = '+ ' .$c->comm;
  1890. $commV12_1 = '';
  1891. $addRM12_1 = $c->comm;
  1892. }else {
  1893. $comms = explode("RM", $c->comm);
  1894. if(isset($comms[1])){
  1895. $comm12_1 = 'RM '.$comms[1];
  1896. $commV12_1 = floatval($comms[1]);
  1897. }else {
  1898. if($comms[0] != ''){
  1899. $comm12_1 = $comms[0].'%';
  1900. $commV12_1 = floatval($comms[0])/100;
  1901. }
  1902. }
  1903. }
  1904. }
  1905. }
  1906. }else if($c->contract =='12' && $c->packageR == "300"){
  1907. if(strpos($c->ranges, '>') !== false) {
  1908. $pieces = explode(">", $c->ranges);
  1909. if($countD12_2 >= intval($pieces[1])){
  1910. if(strpos($c->comm, 'RM') !== false) {
  1911. $comm12_2 = '+ ' .$c->comm;
  1912. $commV12_2 = '';
  1913. $addRM12_2 = $c->comm;
  1914. }else {
  1915. $comms = explode("RM", $c->comm);
  1916. if(isset($comms[1])){
  1917. $comm12_2 = 'RM '.$comms[1];
  1918. $commV12_2 = floatval($comms[1]);
  1919. }else {
  1920. if($comms[0] != ''){
  1921. $comm12_2 = $comms[0].'%';
  1922. $commV12_2 = floatval($comms[0])/100;
  1923. }
  1924. }
  1925. }
  1926. }
  1927. }
  1928. }else if($c->contract =='12' && $c->packageR == "500"){
  1929. if(strpos($c->ranges, '>') !== false) {
  1930. $pieces = explode(">", $c->ranges);
  1931. if($countD12_3 >= intval($pieces[1])){
  1932. if(strpos($c->comm, 'RM') !== false) {
  1933. $comm12_3 = '+ ' .$c->comm;
  1934. $commV12_3 = '';
  1935. $addRM12_3 = $c->comm;
  1936. }else {
  1937. $comms = explode("RM", $c->comm);
  1938. if(isset($comms[1])){
  1939. $comm12_3 = 'RM '.$comms[1];
  1940. $commV12_3 = floatval($comms[1]);
  1941. }else {
  1942. if($comms[0] != ''){
  1943. $comm12_3 = $comms[0].'%';
  1944. $commV12_3 = floatval($comms[0])/100;
  1945. }
  1946. }
  1947. }
  1948. }
  1949. }
  1950. }else if($c->contract =='12' && $c->packageR == "1"){
  1951. if(strpos($c->ranges, '>') !== false) {
  1952. $pieces = explode(">", $c->ranges);
  1953. if($countD12_4 >= intval($pieces[1])){
  1954. if(strpos($c->comm, 'RM') !== false) {
  1955. $comm12_4 = '+ ' .$c->comm;
  1956. $commV12_4 = '';
  1957. $addRM12_4 = $c->comm;
  1958. }else {
  1959. $comms = explode("RM", $c->comm);
  1960. if(isset($comms[1])){
  1961. $comm12_4 = 'RM '.$comms[1];
  1962. $commV12_4 = floatval($comms[1]);
  1963. }else {
  1964. if($comms[0] != ''){
  1965. $comm12_4 = $comms[0].'%';
  1966. $commV12_4 = floatval($comms[0])/100;
  1967. }
  1968. }
  1969. }
  1970. }
  1971. }
  1972. }
  1973. }
  1974. // Category 10,30,50,100
  1975. foreach ($data12_1 as $key => $d) {
  1976. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1977. $address = ''; $name = '';
  1978. if($customer->Form->type_application == 'R'){
  1979. if($customer->street != ''){
  1980. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1981. }else {
  1982. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1983. }
  1984. $name = $customer->name;
  1985. }else if($customer->Form->type_application == 'B'){
  1986. if($customer->unit_no != ''){
  1987. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1988. }else {
  1989. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1990. }
  1991. $name = $customer->company_name;
  1992. }
  1993. $total = '';
  1994. if($commV12_1 == ''){
  1995. $total = $addRM12_1;
  1996. }else {
  1997. $total = number_format($d['retail_price']*$commV12_1,2);
  1998. }
  1999. $final[] = array(
  2000. 'index' => $d['formT'],
  2001. 'contract' => $d['contract'],
  2002. 'wo' => $d['wo'],
  2003. 'activation' => $d['activated_dt'],
  2004. 'name' => $name,
  2005. 'address' => $address,
  2006. 'package' => $d['package'],
  2007. 'retail_price' => 'RM '.$d['retail_price'],
  2008. 'incentives1' => $comm12_1,
  2009. 'incentives2' => $addRM12_1,
  2010. 'total' => 'RM '.$total,
  2011. 'claim' => $c['claim_dt'],
  2012. );
  2013. }
  2014. foreach ($data24_1 as $key => $d) {
  2015. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2016. $address = ''; $name = '';
  2017. if($customer->Form->type_application == 'R'){
  2018. if($customer->street != ''){
  2019. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2020. }else {
  2021. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2022. }
  2023. $name = $customer->name;
  2024. }else if($customer->Form->type_application == 'B'){
  2025. if($customer->unit_no != ''){
  2026. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2027. }else {
  2028. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2029. }
  2030. $name = $customer->company_name;
  2031. }
  2032. $total = '';
  2033. if($commV24_1 == ''){
  2034. $total = $addRM24_1;
  2035. }else {
  2036. $total = number_format(($d['retail_price']*$commV24_1) + floatval($addRM24_1),2);
  2037. }
  2038. $final[] = array(
  2039. 'index' => $d['formT'],
  2040. 'contract' => $d['contract'],
  2041. 'wo' => $d['wo'],
  2042. 'activation' => $d['activated_dt'],
  2043. 'name' => $name,
  2044. 'address' => $address,
  2045. 'package' => $d['package'],
  2046. 'retail_price' => 'RM '.$d['retail_price'],
  2047. 'incentives1' => $comm24_1,
  2048. 'incentives2' => $addRM24_1,
  2049. 'total' => 'RM '.$total,
  2050. 'claim' => $c['claim_dt'],
  2051. );
  2052. }
  2053. // Category 300
  2054. foreach ($data12_2 as $key => $d) {
  2055. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2056. $address = ''; $name = '';
  2057. if($customer->Form->type_application == 'R'){
  2058. if($customer->street != ''){
  2059. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2060. }else {
  2061. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2062. }
  2063. $name = $customer->name;
  2064. }else if($customer->Form->type_application == 'B'){
  2065. if($customer->unit_no != ''){
  2066. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2067. }else {
  2068. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2069. }
  2070. $name = $customer->company_name;
  2071. }
  2072. $total = '';
  2073. if($commV12_2 == ''){
  2074. $total = $addRM12_2;
  2075. }else {
  2076. $total = number_format($d['retail_price']*$commV12_2,2);
  2077. }
  2078. $final[] = array(
  2079. 'index' => $d['formT'],
  2080. 'contract' => $d['contract'],
  2081. 'wo' => $d['wo'],
  2082. 'activation' => $d['activated_dt'],
  2083. 'name' => $name,
  2084. 'address' => $address,
  2085. 'package' => $d['package'],
  2086. 'retail_price' => 'RM '.$d['retail_price'],
  2087. 'incentives1' => $commV12_2,
  2088. 'incentives2' => $addRM12_2,
  2089. 'total' => 'RM '.$total,
  2090. 'claim' => $c['claim_dt'],
  2091. );
  2092. }
  2093. foreach ($data24_2 as $key => $d) {
  2094. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2095. $address = ''; $name = '';
  2096. if($customer->Form->type_application == 'R'){
  2097. if($customer->street != ''){
  2098. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2099. }else {
  2100. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2101. }
  2102. $name = $customer->name;
  2103. }else if($customer->Form->type_application == 'B'){
  2104. if($customer->unit_no != ''){
  2105. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2106. }else {
  2107. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2108. }
  2109. $name = $customer->company_name;
  2110. }
  2111. $total = '';
  2112. if($commV24_2 == ''){
  2113. $total = $addRM24_2;//number_format($d['retail_price']+$addRM24_2,2);
  2114. }else {
  2115. $total = number_format($d['retail_price']*$commV24_2,2);
  2116. }
  2117. $final[] = array(
  2118. 'index' => $d['formT'],
  2119. 'contract' => $d['contract'],
  2120. 'wo' => $d['wo'],
  2121. 'activation' => $d['activated_dt'],
  2122. 'name' => $name,
  2123. 'address' => $address,
  2124. 'package' => $d['package'],
  2125. 'retail_price' => 'RM '.$d['retail_price'],
  2126. 'incentives1' => $commV24_2,
  2127. 'incentives2' => $comm24_2,
  2128. 'total' => 'RM '.$total,
  2129. 'claim' => $c['claim_dt'],
  2130. );
  2131. }
  2132. // Category 500
  2133. foreach ($data12_3 as $key => $d) {
  2134. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2135. $address = ''; $name = '';
  2136. if($customer->Form->type_application == 'R'){
  2137. if($customer->street != ''){
  2138. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2139. }else {
  2140. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2141. }
  2142. $name = $customer->name;
  2143. }else if($customer->Form->type_application == 'B'){
  2144. if($customer->unit_no != ''){
  2145. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2146. }else {
  2147. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2148. }
  2149. $name = $customer->company_name;
  2150. }
  2151. $total = '';
  2152. if($commV12_3 == ''){
  2153. $total = $addRM12_3;
  2154. }else {
  2155. $total = number_format($d['retail_price']*$commV12_3,2);
  2156. }
  2157. $final[] = array(
  2158. 'index' => $d['formT'],
  2159. 'contract' => $d['contract'],
  2160. 'wo' => $d['wo'],
  2161. 'activation' => $d['activated_dt'],
  2162. 'name' => $name,
  2163. 'address' => $address,
  2164. 'package' => $d['package'],
  2165. 'retail_price' => 'RM '.$d['retail_price'],
  2166. 'incentives1' => $commV12_3,
  2167. 'incentives2' => $addRM12_3,
  2168. 'total' => 'RM '.$total,
  2169. 'claim' => $c['claim_dt'],
  2170. );
  2171. }
  2172. foreach ($data24_3 as $key => $d) {
  2173. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2174. $address = ''; $name = '';
  2175. if($customer->Form->type_application == 'R'){
  2176. if($customer->street != ''){
  2177. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2178. }else {
  2179. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2180. }
  2181. $name = $customer->name;
  2182. }else if($customer->Form->type_application == 'B'){
  2183. if($customer->unit_no != ''){
  2184. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2185. }else {
  2186. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2187. }
  2188. $name = $customer->company_name;
  2189. }
  2190. $total = '';
  2191. if($commV24_3 == ''){
  2192. $total = $addRM24_3; //number_format($d['retail_price']+$addRM24_3,2);
  2193. }else {
  2194. $total = number_format($d['retail_price']*$commV24_3,2);
  2195. }
  2196. $final[] = array(
  2197. 'index' => $d['formT'],
  2198. 'contract' => $d['contract'],
  2199. 'wo' => $d['wo'],
  2200. 'activation' => $d['activated_dt'],
  2201. 'name' => $name,
  2202. 'address' => $address,
  2203. 'package' => $d['package'],
  2204. 'retail_price' => 'RM '.$d['retail_price'],
  2205. 'incentives1' => $commV24_3,
  2206. 'incentives2' => $comm24_3,
  2207. 'total' => 'RM '.$total,
  2208. 'claim' => $c['claim_dt'],
  2209. );
  2210. }
  2211. // Category 1
  2212. foreach ($data12_4 as $key => $d) {
  2213. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2214. $address = ''; $name = '';
  2215. if($customer->Form->type_application == 'R'){
  2216. if($customer->street != ''){
  2217. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2218. }else {
  2219. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2220. }
  2221. $name = $customer->name;
  2222. }else if($customer->Form->type_application == 'B'){
  2223. if($customer->unit_no != ''){
  2224. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2225. }else {
  2226. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2227. }
  2228. $name = $customer->company_name;
  2229. }
  2230. $total = '';
  2231. if($commV12_4 == ''){
  2232. $total = $addRM12_4;
  2233. }else {
  2234. $total = number_format($d['retail_price']*$commV12_4,2);
  2235. }
  2236. $final[] = array(
  2237. 'index' => $d['formT'],
  2238. 'contract' => $d['contract'],
  2239. 'wo' => $d['wo'],
  2240. 'activation' => $d['activated_dt'],
  2241. 'name' => $name,
  2242. 'address' => $address,
  2243. 'package' => $d['package'],
  2244. 'retail_price' => 'RM '.$d['retail_price'],
  2245. 'incentives1' => $commV12_4,
  2246. 'incentives2' => $addRM12_4,
  2247. 'total' => 'RM '.$total,
  2248. 'claim' => $c['claim_dt'],
  2249. );
  2250. }
  2251. foreach ($data24_4 as $key => $d) {
  2252. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2253. $address = ''; $name = '';
  2254. if($customer->Form->type_application == 'R'){
  2255. if($customer->street != ''){
  2256. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2257. }else {
  2258. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2259. }
  2260. $name = $customer->name;
  2261. }else if($customer->Form->type_application == 'B'){
  2262. if($customer->unit_no != ''){
  2263. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2264. }else {
  2265. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2266. }
  2267. $name = $customer->company_name;
  2268. }
  2269. $total = '';
  2270. if($commV24_4 == ''){
  2271. $total = $addRM24_4; //number_format($d['retail_price']+$addRM24_4,2);
  2272. }else {
  2273. $total = number_format($d['retail_price']*$commV24_4,2);
  2274. }
  2275. $final[] = array(
  2276. 'index' => $d['formT'],
  2277. 'contract' => $d['contract'],
  2278. 'wo' => $d['wo'],
  2279. 'activation' => $d['activated_dt'],
  2280. 'name' => $name,
  2281. 'address' => $address,
  2282. 'package' => $d['package'],
  2283. 'retail_price' => 'RM '.$d['retail_price'],
  2284. 'incentives1' => $commV24_4,
  2285. 'incentives2' => $comm24_4,
  2286. 'total' => 'RM '.$total,
  2287. 'claim' => $c['claim_dt'],
  2288. );
  2289. }
  2290. }else {
  2291. foreach ($dataCB as $c){
  2292. $customer = Subscriber::with('Form')->where('_id', $c['customer_id'])->first();
  2293. $address = ''; $name = '';
  2294. if($customer->Form->type_application == 'R'){
  2295. if($customer->street != ''){
  2296. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2297. }else {
  2298. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2299. }
  2300. $name = $customer->name;
  2301. }else if($customer->Form->type_application == 'B'){
  2302. if($customer->unit_no != ''){
  2303. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2304. }else {
  2305. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2306. }
  2307. $name = $customer->company_name;
  2308. }
  2309. $final[] = array(
  2310. 'index' => $c['formT'],
  2311. 'contract' => $c['contract'],
  2312. 'wo' => $c['wo'],
  2313. 'activation' => $c['activated_dt'],
  2314. 'name' => $name,
  2315. 'address' => $address,
  2316. 'package' => $c['package'],
  2317. 'retail_price' => 'RM '.$c['retail_price'],
  2318. 'incentives1' => '',
  2319. 'incentives2' => '',
  2320. 'total' => '',
  2321. 'claim' => $c['claim_dt'],
  2322. );
  2323. }
  2324. }
  2325. return $final;
  2326. }
  2327. // public function filterclaim($company,$year,$month,$app)
  2328. // {
  2329. // $id = Auth::guard('ms')->id();
  2330. // $user = Staff::with('StaffDetail')->find($id);
  2331. // $dataR = array(); $dataB = array(); $combineData = array();
  2332. // if($year!='null' && $month!='null' && $app=='null'){
  2333. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2334. // $dataDis = $this->returnDataR($company,'2019','12');
  2335. // $dataJan = $this->returnDataR($company,'2020','1');
  2336. // $count_cyberjaya = array(); $count_jasin = array();
  2337. // foreach ($dataDis as $key => $d) {
  2338. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2339. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2340. // $count_cyberjaya[] = $d;
  2341. // }
  2342. // if (strpos($d['address'], 'Jasin') !== false) {
  2343. // $count_jasin[] = $d;
  2344. // }
  2345. // }else {
  2346. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2347. // $combineData[] = $d;
  2348. // }
  2349. // }
  2350. // }
  2351. // foreach ($dataJan as $key => $d) {
  2352. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2353. // $count_cyberjaya[] = $d;
  2354. // }
  2355. // if (strpos($d['address'], 'Jasin') !== false) {
  2356. // $count_jasin[] = $d;
  2357. // }
  2358. // }
  2359. // // Store to combineData New Incentives Cyberjaya
  2360. // foreach ($count_cyberjaya as $key => $d) {
  2361. // if(count($count_cyberjaya) > 50){
  2362. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2363. // if($d['contract'] == '12'){
  2364. // array_push($combineData, array(
  2365. // 'index' => $d['index'],
  2366. // 'contract' => $d['contract'],
  2367. // 'wo' => $d['wo'],
  2368. // 'activation' => $d['activation'],
  2369. // 'name' => $d['name'],
  2370. // 'address' => $d['address'],
  2371. // 'package' => $d['package'],
  2372. // 'retail_price' => $d['retail_price'],
  2373. // 'incentives1' => $d['incentives1'],
  2374. // 'incentives2' => $d['incentives2'],
  2375. // 'total' => $d['total'],
  2376. // 'claim' => $d['claim'],
  2377. // ));
  2378. // }else {
  2379. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2380. // array_push($combineData, array(
  2381. // 'index' => $d['index'],
  2382. // 'contract' => $d['contract'],
  2383. // 'wo' => $d['wo'],
  2384. // 'activation' => $d['activation'],
  2385. // 'name' => $d['name'],
  2386. // 'address' => $d['address'],
  2387. // 'package' => $d['package'],
  2388. // 'retail_price' => $d['retail_price'],
  2389. // 'incentives1' => '230%',
  2390. // 'incentives2' => $d['incentives2'],
  2391. // 'total' => 'RM '.$total,
  2392. // 'claim' => $d['claim'],
  2393. // ));
  2394. // }
  2395. // }
  2396. // }else if(count($count_cyberjaya) < 50){
  2397. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2398. // array_push($combineData, array(
  2399. // 'index' => $d['index'],
  2400. // 'contract' => $d['contract'],
  2401. // 'wo' => $d['wo'],
  2402. // 'activation' => $d['activation'],
  2403. // 'name' => $d['name'],
  2404. // 'address' => $d['address'],
  2405. // 'package' => $d['package'],
  2406. // 'retail_price' => $d['retail_price'],
  2407. // 'incentives1' => $d['incentives1'],
  2408. // 'incentives2' => $d['incentives2'],
  2409. // 'total' => $d['total'],
  2410. // 'claim' => $d['claim'],
  2411. // ));
  2412. // }
  2413. // }
  2414. // }
  2415. // // Store to combineData New Incentives Jasin
  2416. // foreach ($count_jasin as $key => $d) {
  2417. // if(count($count_jasin) > 10){
  2418. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2419. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2420. // array_push($combineData, array(
  2421. // 'index' => $d['index'],
  2422. // 'contract' => $d['contract'],
  2423. // 'wo' => $d['wo'],
  2424. // 'activation' => $d['activation'],
  2425. // 'name' => $d['name'],
  2426. // 'address' => $d['address'],
  2427. // 'package' => $d['package'],
  2428. // 'retail_price' => $d['retail_price'],
  2429. // 'incentives1' => '230%',
  2430. // 'incentives2' => $d['incentives2'],
  2431. // 'total' => 'RM '.$total,
  2432. // 'claim' => $d['claim'],
  2433. // ));
  2434. // }
  2435. // }else if(count($count_jasin) < 10){
  2436. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2437. // array_push($combineData, array(
  2438. // 'index' => $d['index'],
  2439. // 'contract' => $d['contract'],
  2440. // 'wo' => $d['wo'],
  2441. // 'activation' => $d['activation'],
  2442. // 'name' => $d['name'],
  2443. // 'address' => $d['address'],
  2444. // 'package' => $d['package'],
  2445. // 'retail_price' => $d['retail_price'],
  2446. // 'incentives1' => $d['incentives1'],
  2447. // 'incentives2' => $d['incentives2'],
  2448. // 'total' => $d['total'],
  2449. // 'claim' => $d['claim'],
  2450. // ));
  2451. // }
  2452. // }
  2453. // }
  2454. // }else {
  2455. // $dataR = $this->returnDataR($company,$year,$month);
  2456. // foreach($dataR as $r){
  2457. // $combineData[] = $r;
  2458. // }
  2459. // }
  2460. // $dataB = $this->returnDataB($company,$year,$month);
  2461. // foreach($dataB as $b){
  2462. // $combineData[] = $b;
  2463. // }
  2464. // $i = 0;
  2465. // $nested_data = array();
  2466. // if(!empty($combineData)){
  2467. // foreach ($combineData as $c){
  2468. // $i++;
  2469. // array_push($nested_data, array(
  2470. // 'index' => $c['index'],
  2471. // 'contract' => $c['contract'],
  2472. // 'wo' => $c['wo'],
  2473. // 'activated_dt' => $c['activation'],
  2474. // 'name' => $c['name'],
  2475. // 'address' => $c['address'],
  2476. // 'package' => $c['package'],
  2477. // 'retail_price' => $c['retail_price'],
  2478. // 'incentives1' => $c['incentives1'],
  2479. // 'incentives2' => $c['incentives2'],
  2480. // 'total' => $c['total'],
  2481. // 'claimed' => $c['claim'],
  2482. // ));
  2483. // }
  2484. // }
  2485. // usort($nested_data, function ($a, $b) {
  2486. // $dateA = $a['activated_dt'];
  2487. // $dateB = $b['activated_dt'];
  2488. // // ascending ordering, use `<=` for descending
  2489. // return $dateA <= $dateB;
  2490. // });
  2491. // return \DataTables::of($nested_data)->make(true);
  2492. // }else if($year=='null' && $month=='null' && $app!='null'){
  2493. // if($app == 'Residential'){
  2494. // $dataR = $this->returnDataR($company,$year,$month);
  2495. // }else if($app == 'Business'){
  2496. // $dataB = $this->returnDataB($company,$year,$month);
  2497. // }
  2498. // foreach($dataR as $r){
  2499. // $combineData[] = $r;
  2500. // }
  2501. // foreach($dataB as $b){
  2502. // $combineData[] = $b;
  2503. // }
  2504. // $i = 0;
  2505. // $nested_data = array();
  2506. // if(!empty($combineData)){
  2507. // foreach ($combineData as $c){
  2508. // $i++;
  2509. // array_push($nested_data, array(
  2510. // 'index' => $c['index'],
  2511. // 'contract' => $c['contract'],
  2512. // 'wo' => $c['wo'],
  2513. // 'activated_dt' => $c['activation'],
  2514. // 'name' => $c['name'],
  2515. // 'address' => $c['address'],
  2516. // 'package' => $c['package'],
  2517. // 'retail_price' => $c['retail_price'],
  2518. // 'incentives1' => $c['incentives1'],
  2519. // 'incentives2' => $c['incentives2'],
  2520. // 'total' => $c['total'],
  2521. // 'claimed' => $c['claim'],
  2522. // ));
  2523. // }
  2524. // }
  2525. // usort($nested_data, function ($a, $b) {
  2526. // $dateA = $a['activated_dt'];
  2527. // $dateB = $b['activated_dt'];
  2528. // // ascending ordering, use `<=` for descending
  2529. // return $dateA <= $dateB;
  2530. // });
  2531. // return \DataTables::of($nested_data)->make(true);
  2532. // }else if($year!='null' && $month!='null' && $app!='null'){
  2533. // if($app == 'Residential'){
  2534. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2535. // $dataDis = $this->returnDataR($company,'2019','12');
  2536. // $dataJan = $this->returnDataR($company,'2020','1');
  2537. // $count_cyberjaya = array(); $count_jasin = array();
  2538. // foreach ($dataDis as $key => $d) {
  2539. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2540. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2541. // $count_cyberjaya[] = $d;
  2542. // }
  2543. // if (strpos($d['address'], 'Jasin') !== false) {
  2544. // $count_jasin[] = $d;
  2545. // }
  2546. // }else {
  2547. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2548. // $combineData[] = $d;
  2549. // }
  2550. // }
  2551. // }
  2552. // foreach ($dataJan as $key => $d) {
  2553. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2554. // $count_cyberjaya[] = $d;
  2555. // }
  2556. // if (strpos($d['address'], 'Jasin') !== false) {
  2557. // $count_jasin[] = $d;
  2558. // }
  2559. // }
  2560. // // Store to combineData New Incentives Cyberjaya
  2561. // foreach ($count_cyberjaya as $key => $d) {
  2562. // if(count($count_cyberjaya) > 50){
  2563. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2564. // if($d['contract'] == '12'){
  2565. // array_push($combineData, array(
  2566. // 'index' => $d['index'],
  2567. // 'contract' => $d['contract'],
  2568. // 'wo' => $d['wo'],
  2569. // 'activation' => $d['activation'],
  2570. // 'name' => $d['name'],
  2571. // 'address' => $d['address'],
  2572. // 'package' => $d['package'],
  2573. // 'retail_price' => $d['retail_price'],
  2574. // 'incentives1' => $d['incentives1'],
  2575. // 'incentives2' => $d['incentives2'],
  2576. // 'total' => $d['total'],
  2577. // 'claim' => $d['claim'],
  2578. // ));
  2579. // }else {
  2580. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2581. // array_push($combineData, array(
  2582. // 'index' => $d['index'],
  2583. // 'contract' => $d['contract'],
  2584. // 'wo' => $d['wo'],
  2585. // 'activation' => $d['activation'],
  2586. // 'name' => $d['name'],
  2587. // 'address' => $d['address'],
  2588. // 'package' => $d['package'],
  2589. // 'retail_price' => $d['retail_price'],
  2590. // 'incentives1' => '230%',
  2591. // 'incentives2' => $d['incentives2'],
  2592. // 'total' => 'RM '.$total,
  2593. // 'claim' => $d['claim'],
  2594. // ));
  2595. // }
  2596. // }
  2597. // }else if(count($count_cyberjaya) < 50){
  2598. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2599. // array_push($combineData, array(
  2600. // 'index' => $d['index'],
  2601. // 'contract' => $d['contract'],
  2602. // 'wo' => $d['wo'],
  2603. // 'activation' => $d['activation'],
  2604. // 'name' => $d['name'],
  2605. // 'address' => $d['address'],
  2606. // 'package' => $d['package'],
  2607. // 'retail_price' => $d['retail_price'],
  2608. // 'incentives1' => $d['incentives1'],
  2609. // 'incentives2' => $d['incentives2'],
  2610. // 'total' => $d['total'],
  2611. // 'claim' => $d['claim'],
  2612. // ));
  2613. // }
  2614. // }
  2615. // }
  2616. // // Store to combineData New Incentives Jasin
  2617. // foreach ($count_jasin as $key => $d) {
  2618. // if(count($count_jasin) > 10){
  2619. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2620. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2621. // array_push($combineData, array(
  2622. // 'index' => $d['index'],
  2623. // 'contract' => $d['contract'],
  2624. // 'wo' => $d['wo'],
  2625. // 'activation' => $d['activation'],
  2626. // 'name' => $d['name'],
  2627. // 'address' => $d['address'],
  2628. // 'package' => $d['package'],
  2629. // 'retail_price' => $d['retail_price'],
  2630. // 'incentives1' => '230%',
  2631. // 'incentives2' => $d['incentives2'],
  2632. // 'total' => 'RM '.$total,
  2633. // 'claim' => $d['claim'],
  2634. // ));
  2635. // }
  2636. // }else if(count($count_jasin) < 10){
  2637. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2638. // array_push($combineData, array(
  2639. // 'index' => $d['index'],
  2640. // 'contract' => $d['contract'],
  2641. // 'wo' => $d['wo'],
  2642. // 'activation' => $d['activation'],
  2643. // 'name' => $d['name'],
  2644. // 'address' => $d['address'],
  2645. // 'package' => $d['package'],
  2646. // 'retail_price' => $d['retail_price'],
  2647. // 'incentives1' => $d['incentives1'],
  2648. // 'incentives2' => $d['incentives2'],
  2649. // 'total' => $d['total'],
  2650. // 'claim' => $d['claim'],
  2651. // ));
  2652. // }
  2653. // }
  2654. // }
  2655. // }else {
  2656. // $dataR = $this->returnDataR($company,$year,$month);
  2657. // foreach($dataR as $r){
  2658. // $combineData[] = $r;
  2659. // }
  2660. // }
  2661. // }else if($app == 'Business'){
  2662. // $dataB = $this->returnDataB($company,$year,$month);
  2663. // }
  2664. // foreach($dataB as $b){
  2665. // $combineData[] = $b;
  2666. // }
  2667. // $i = 0;
  2668. // $nested_data = array();
  2669. // if(!empty($combineData)){
  2670. // foreach ($combineData as $c){
  2671. // $i++;
  2672. // array_push($nested_data, array(
  2673. // 'index' => $c['index'],
  2674. // 'contract' => $c['contract'],
  2675. // 'wo' => $c['wo'],
  2676. // 'activated_dt' => $c['activation'],
  2677. // 'name' => $c['name'],
  2678. // 'address' => $c['address'],
  2679. // 'package' => $c['package'],
  2680. // 'retail_price' => $c['retail_price'],
  2681. // 'incentives1' => $c['incentives1'],
  2682. // 'incentives2' => $c['incentives2'],
  2683. // 'total' => $c['total'],
  2684. // 'claimed' => $c['claim'],
  2685. // ));
  2686. // }
  2687. // }
  2688. // usort($nested_data, function ($a, $b) {
  2689. // $dateA = $a['activated_dt'];
  2690. // $dateB = $b['activated_dt'];
  2691. // // ascending ordering, use `<=` for descending
  2692. // return $dateA <= $dateB;
  2693. // });
  2694. // return \DataTables::of($nested_data)->make(true);
  2695. // }
  2696. // }
  2697. // public function exportPDFClaim($company,$year,$month,$app) {
  2698. // $final = array();
  2699. // $id = Auth::guard('ms')->id();
  2700. // $user = Staff::with('StaffDetail')->find($id);
  2701. // $com = Company::where('_id',$company)->first();
  2702. // $dataR = array(); $dataB = array(); $combineData = array();
  2703. // if($year!='null' && $month!='null' && $app=='null'){
  2704. // $count_cyberjaya = array(); $count_jasin = array();
  2705. // $extra = 0; $basic_total = 0; $totals = 0;
  2706. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2707. // $dataDis = $this->returnDataR($company,'2019','12');
  2708. // $dataJan = $this->returnDataR($company,'2020','1');
  2709. // foreach ($dataDis as $key => $d) {
  2710. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2711. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2712. // $count_cyberjaya[] = $d;
  2713. // }
  2714. // if (strpos($d['address'], 'Jasin') !== false) {
  2715. // $count_jasin[] = $d;
  2716. // }
  2717. // }else {
  2718. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2719. // $combineData[] = $d;
  2720. // }
  2721. // }
  2722. // }
  2723. // foreach ($dataJan as $key => $d) {
  2724. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2725. // $count_cyberjaya[] = $d;
  2726. // }
  2727. // if (strpos($d['address'], 'Jasin') !== false) {
  2728. // $count_jasin[] = $d;
  2729. // }
  2730. // }
  2731. // // Store to combineData New Incentives Cyberjaya
  2732. // foreach ($count_cyberjaya as $key => $d) {
  2733. // if(count($count_cyberjaya) > 50){
  2734. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2735. // if($d['contract'] == '12'){
  2736. // array_push($combineData, array(
  2737. // 'index' => $d['index'],
  2738. // 'contract' => $d['contract'],
  2739. // 'wo' => $d['wo'],
  2740. // 'activation' => $d['activation'],
  2741. // 'name' => $d['name'],
  2742. // 'address' => $d['address'],
  2743. // 'package' => $d['package'],
  2744. // 'retail_price' => $d['retail_price'],
  2745. // 'incentives1' => $d['incentives1'],
  2746. // 'incentives2' => $d['incentives2'],
  2747. // 'total' => $d['total'],
  2748. // 'claim' => $d['claim'],
  2749. // ));
  2750. // }else {
  2751. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2752. // array_push($combineData, array(
  2753. // 'index' => $d['index'],
  2754. // 'contract' => $d['contract'],
  2755. // 'wo' => $d['wo'],
  2756. // 'activation' => $d['activation'],
  2757. // 'name' => $d['name'],
  2758. // 'address' => $d['address'],
  2759. // 'package' => $d['package'],
  2760. // 'retail_price' => $d['retail_price'],
  2761. // 'incentives1' => '230%',
  2762. // 'incentives2' => $d['incentives2'],
  2763. // 'total' => 'RM '.$total,
  2764. // 'claim' => $d['claim'],
  2765. // ));
  2766. // }
  2767. // }
  2768. // }else if(count($count_cyberjaya) < 50){
  2769. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2770. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.1, 2);
  2771. // array_push($combineData, array(
  2772. // 'index' => $d['index'],
  2773. // 'contract' => $d['contract'],
  2774. // 'wo' => $d['wo'],
  2775. // 'activation' => $d['activation'],
  2776. // 'name' => $d['name'],
  2777. // 'address' => $d['address'],
  2778. // 'package' => $d['package'],
  2779. // 'retail_price' => $d['retail_price'],
  2780. // 'incentives1' => $d['incentives1'],
  2781. // 'incentives2' => $d['incentives2'],
  2782. // 'total' => $d['total'],
  2783. // 'claim' => $d['claim'],
  2784. // ));
  2785. // }
  2786. // }
  2787. // }
  2788. // // Store to combineData New Incentives Jasin
  2789. // foreach ($count_jasin as $key => $d) {
  2790. // if(count($count_jasin) > 10){
  2791. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2792. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2793. // array_push($combineData, array(
  2794. // 'index' => $d['index'],
  2795. // 'contract' => $d['contract'],
  2796. // 'wo' => $d['wo'],
  2797. // 'activation' => $d['activation'],
  2798. // 'name' => $d['name'],
  2799. // 'address' => $d['address'],
  2800. // 'package' => $d['package'],
  2801. // 'retail_price' => $d['retail_price'],
  2802. // 'incentives1' => '230%',
  2803. // 'incentives2' => $d['incentives2'],
  2804. // 'total' => 'RM '.$total,
  2805. // 'claim' => $d['claim'],
  2806. // ));
  2807. // }
  2808. // }else if(count($count_jasin) < 10){
  2809. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2810. // array_push($combineData, array(
  2811. // 'index' => $d['index'],
  2812. // 'contract' => $d['contract'],
  2813. // 'wo' => $d['wo'],
  2814. // 'activation' => $d['activation'],
  2815. // 'name' => $d['name'],
  2816. // 'address' => $d['address'],
  2817. // 'package' => $d['package'],
  2818. // 'retail_price' => $d['retail_price'],
  2819. // 'incentives1' => $d['incentives1'],
  2820. // 'incentives2' => $d['incentives2'],
  2821. // 'total' => $d['total'],
  2822. // 'claim' => $d['claim'],
  2823. // ));
  2824. // }
  2825. // }
  2826. // }
  2827. // }else {
  2828. // $dataR = $this->returnDataR($company,$year,$month);
  2829. // foreach($dataR as $r){
  2830. // $combineData[] = $r;
  2831. // }
  2832. // }
  2833. // $dataB = $this->returnDataB($company,$year,$month);
  2834. // foreach($dataB as $b){
  2835. // $combineData[] = $b;
  2836. // }
  2837. // $i = 0;
  2838. // $nested_data = array();
  2839. // if(!empty($combineData)){
  2840. // foreach ($combineData as $c){
  2841. // $i++;
  2842. // array_push($final, array(
  2843. // 'index' => $c['index'],
  2844. // 'contract' => $c['contract'],
  2845. // 'wo' => $c['wo'],
  2846. // 'activated_dt' => $c['activation'],
  2847. // 'name' => $c['name'],
  2848. // 'address' => $c['address'],
  2849. // 'package' => $c['package'],
  2850. // 'retail_price' => $c['retail_price'],
  2851. // 'incentives1' => $c['incentives1'],
  2852. // 'incentives2' => $c['incentives2'],
  2853. // 'total' => $c['total'],
  2854. // 'claimed' => $c['claim'],
  2855. // ));
  2856. // }
  2857. // }
  2858. // foreach($final as $f){
  2859. // $basic_total += floatval(str_replace('RM ', '', $f['total']));
  2860. // }
  2861. // // Calculate extra incentves
  2862. // if($month == '1' && $year == '2020'){
  2863. // if(count($count_cyberjaya) > 50){
  2864. // $balance = count($count_cyberjaya) - 50;
  2865. // $extra += $balance * 50;
  2866. // }
  2867. // if(count($count_jasin) > 10){
  2868. // $balance = count($count_jasin) - 10;
  2869. // $extra += $balance * 50;
  2870. // }
  2871. // }else {
  2872. // $extra = 0;
  2873. // }
  2874. // $totals = $basic_total + $extra;
  2875. // usort($final, function ($a, $b) {
  2876. // $dateA = $a['activated_dt'];
  2877. // $dateB = $b['activated_dt'];
  2878. // // ascending ordering, use `<=` for descending
  2879. // return $dateA <= $dateB;
  2880. // });
  2881. // $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals'));
  2882. // $pdf->setPaper('A4', 'landscape');
  2883. // $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$month.'-'.$year.'.pdf';
  2884. // return $pdf->download( $pdfName );
  2885. // }else if($year!='null' && $month!='null' && $app!='null'){
  2886. // $count_cyberjaya = array(); $count_jasin = array();
  2887. // $extra = 0; $basic_total = 0; $totals = 0;
  2888. // if($app == 'Residential'){
  2889. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2890. // $dataDis = $this->returnDataR($company,'2019','12');
  2891. // $dataJan = $this->returnDataR($company,'2020','1');
  2892. // foreach ($dataDis as $key => $d) {
  2893. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2894. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2895. // $count_cyberjaya[] = $d;
  2896. // }
  2897. // if (strpos($d['address'], 'Jasin') !== false) {
  2898. // $count_jasin[] = $d;
  2899. // }
  2900. // }else {
  2901. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2902. // $combineData[] = $d;
  2903. // }
  2904. // }
  2905. // }
  2906. // foreach ($dataJan as $key => $d) {
  2907. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2908. // $count_cyberjaya[] = $d;
  2909. // }
  2910. // if (strpos($d['address'], 'Jasin') !== false) {
  2911. // $count_jasin[] = $d;
  2912. // }
  2913. // }
  2914. // // Store to combineData New Incentives Cyberjaya
  2915. // foreach ($count_cyberjaya as $key => $d) {
  2916. // if(count($count_cyberjaya) > 50){
  2917. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2918. // if($d['contract'] == '12'){
  2919. // array_push($combineData, array(
  2920. // 'index' => $d['index'],
  2921. // 'contract' => $d['contract'],
  2922. // 'wo' => $d['wo'],
  2923. // 'activation' => $d['activation'],
  2924. // 'name' => $d['name'],
  2925. // 'address' => $d['address'],
  2926. // 'package' => $d['package'],
  2927. // 'retail_price' => $d['retail_price'],
  2928. // 'incentives1' => $d['incentives1'],
  2929. // 'incentives2' => $d['incentives2'],
  2930. // 'total' => $d['total'],
  2931. // 'claim' => $d['claim'],
  2932. // ));
  2933. // }else {
  2934. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2935. // array_push($combineData, array(
  2936. // 'index' => $d['index'],
  2937. // 'contract' => $d['contract'],
  2938. // 'wo' => $d['wo'],
  2939. // 'activation' => $d['activation'],
  2940. // 'name' => $d['name'],
  2941. // 'address' => $d['address'],
  2942. // 'package' => $d['package'],
  2943. // 'retail_price' => $d['retail_price'],
  2944. // 'incentives1' => '230%',
  2945. // 'incentives2' => $d['incentives2'],
  2946. // 'total' => 'RM '.$total,
  2947. // 'claim' => $d['claim'],
  2948. // ));
  2949. // }
  2950. // }
  2951. // }else if(count($count_cyberjaya) < 50){
  2952. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2953. // array_push($combineData, array(
  2954. // 'index' => $d['index'],
  2955. // 'contract' => $d['contract'],
  2956. // 'wo' => $d['wo'],
  2957. // 'activation' => $d['activation'],
  2958. // 'name' => $d['name'],
  2959. // 'address' => $d['address'],
  2960. // 'package' => $d['package'],
  2961. // 'retail_price' => $d['retail_price'],
  2962. // 'incentives1' => $d['incentives1'],
  2963. // 'incentives2' => $d['incentives2'],
  2964. // 'total' => $d['total'],
  2965. // 'claim' => $d['claim'],
  2966. // ));
  2967. // }
  2968. // }
  2969. // }
  2970. // // Store to combineData New Incentives Jasin
  2971. // foreach ($count_jasin as $key => $d) {
  2972. // if(count($count_jasin) > 10){
  2973. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2974. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2975. // array_push($combineData, array(
  2976. // 'index' => $d['index'],
  2977. // 'contract' => $d['contract'],
  2978. // 'wo' => $d['wo'],
  2979. // 'activation' => $d['activation'],
  2980. // 'name' => $d['name'],
  2981. // 'address' => $d['address'],
  2982. // 'package' => $d['package'],
  2983. // 'retail_price' => $d['retail_price'],
  2984. // 'incentives1' => '230%',
  2985. // 'incentives2' => $d['incentives2'],
  2986. // 'total' => 'RM '.$total,
  2987. // 'claim' => $d['claim'],
  2988. // ));
  2989. // }
  2990. // }else if(count($count_jasin) < 10){
  2991. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2992. // array_push($combineData, array(
  2993. // 'index' => $d['index'],
  2994. // 'contract' => $d['contract'],
  2995. // 'wo' => $d['wo'],
  2996. // 'activation' => $d['activation'],
  2997. // 'name' => $d['name'],
  2998. // 'address' => $d['address'],
  2999. // 'package' => $d['package'],
  3000. // 'retail_price' => $d['retail_price'],
  3001. // 'incentives1' => $d['incentives1'],
  3002. // 'incentives2' => $d['incentives2'],
  3003. // 'total' => $d['total'],
  3004. // 'claim' => $d['claim'],
  3005. // ));
  3006. // }
  3007. // }
  3008. // }
  3009. // }else {
  3010. // $dataR = $this->returnDataR($company,$year,$month);
  3011. // foreach($dataR as $r){
  3012. // $combineData[] = $r;
  3013. // }
  3014. // }
  3015. // }else if($app == 'Business'){
  3016. // $dataB = $this->returnDataB($company,$year,$month);
  3017. // }
  3018. // foreach($dataB as $b){
  3019. // $combineData[] = $b;
  3020. // }
  3021. // $i = 0;
  3022. // $nested_data = array();
  3023. // if(!empty($combineData)){
  3024. // foreach ($combineData as $c){
  3025. // $i++;
  3026. // array_push($final, array(
  3027. // 'index' => $c['index'],
  3028. // 'contract' => $c['contract'],
  3029. // 'wo' => $c['wo'],
  3030. // 'activated_dt' => $c['activation'],
  3031. // 'name' => $c['name'],
  3032. // 'address' => $c['address'],
  3033. // 'package' => $c['package'],
  3034. // 'retail_price' => $c['retail_price'],
  3035. // 'incentives1' => $c['incentives1'],
  3036. // 'incentives2' => $c['incentives2'],
  3037. // 'total' => $c['total'],
  3038. // 'claimed' => $c['claim'],
  3039. // ));
  3040. // }
  3041. // }
  3042. // foreach($final as $f){
  3043. // $basic_total += floatval(str_replace('RM ', '', $f['total']));
  3044. // }
  3045. // //Calculate extra incentves
  3046. // if($month == '1' && $year == '2020'){
  3047. // if(count($count_cyberjaya) > 50){
  3048. // $balance = count($count_cyberjaya) - 50;
  3049. // $extra += $balance * 50;
  3050. // }
  3051. // if(count($count_jasin) > 10){
  3052. // $balance = count($count_jasin) - 10;
  3053. // $extra += $balance * 50;
  3054. // }
  3055. // }else {
  3056. // $extra = 0;
  3057. // }
  3058. // $totals = $basic_total + $extra;
  3059. // usort($final, function ($a, $b) {
  3060. // $dateA = $a['activated_dt'];
  3061. // $dateB = $b['activated_dt'];
  3062. // // ascending ordering, use `<=` for descending
  3063. // return $dateA <= $dateB;
  3064. // });
  3065. // $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals'));
  3066. // $pdf->setPaper('A4', 'landscape');
  3067. // $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$month.'-'.$year.'.pdf';
  3068. // return $pdf->download( $pdfName );
  3069. // }
  3070. // }
  3071. public function filterclaim($company,$year,$month,$app,$ptype)
  3072. {
  3073. $id = Auth::guard('ms')->id();
  3074. $user = Staff::with('StaffDetail')->find($id);
  3075. if($year!='null' && $month!='null' && $app=='null' && $ptype=='null'){
  3076. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3077. $q->with('Form');
  3078. }],'Staff')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3079. }else if($year=='null' && $month=='null' && $app!='null' && $ptype=='null'){
  3080. if($app == 'Residential'){
  3081. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3082. $q->with('Form');
  3083. }],'Staff')->where('formT', 'R')->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3084. }else if($app == 'Business'){
  3085. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3086. $q->with('Form');
  3087. }],'Staff')->where('formT', 'B')->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3088. }
  3089. }else if($year!='null' && $month!='null' && $app!='null' && $ptype=='null'){
  3090. if($app == 'Residential'){
  3091. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3092. $q->with('Form');
  3093. }],'Staff')->where('formT', 'R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3094. }else if($app == 'Business'){
  3095. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3096. $q->with('Form');
  3097. }],'Staff')->where('formT', 'B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3098. }
  3099. }else if($year!='null' && $month!='null' && $app=='null' && $ptype!='null'){
  3100. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3101. $q->with('Form');
  3102. }],'Staff')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3103. }else if($year=='null' && $month=='null' && $app=='null' && $ptype!='null'){
  3104. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3105. $q->with('Form');
  3106. }],'Staff')->where('projectT', $ptype)->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3107. }else if($year!='null' && $month!='null' && $app!='null' && $ptype!='null'){
  3108. if($app == 'Residential'){
  3109. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3110. $q->with('Form');
  3111. }],'Staff')->where('formT','R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3112. } else if ($app == 'Business'){
  3113. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3114. $q->with('Form');
  3115. }],'Staff')->where('formT','B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3116. }
  3117. }else if($year=='null' && $month=='null' && $app!='null' && $ptype!='null'){
  3118. if($app == 'Residential'){
  3119. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3120. $q->with('Form');
  3121. }],'Staff')->where('formT','R')->where('dealer',$company)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3122. } else if ($app == 'Business'){
  3123. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3124. $q->with('Form');
  3125. }],'Staff')->where('formT','B')->where('dealer',$company)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3126. }
  3127. }
  3128. $i = 0;
  3129. $nested_data = array();
  3130. if(!empty($dataClaim)){
  3131. foreach ($dataClaim as $c){
  3132. $address = ''; $name = '';
  3133. if($c->Subscriber->Form->type_application == 'R'){
  3134. if($c->Subscriber->street != ''){
  3135. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3136. }else {
  3137. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3138. }
  3139. $name = $c->Subscriber->name;
  3140. }else if($c->Subscriber->Form->type_application == 'B'){
  3141. if($c->Subscriber->unit_no != ''){
  3142. $address = $c->Subscriber->unit_no. ', '.$c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3143. }else {
  3144. $address = $c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3145. }
  3146. $name = $c->Subscriber->company_name;
  3147. }
  3148. $i++;
  3149. array_push($nested_data, array(
  3150. 'index' => $c->formT,
  3151. 'contract' => $c->contract,
  3152. 'wo' => $c->wo,
  3153. 'activated_dt' => $c->activated_dt,
  3154. 'name' => $name,
  3155. 'address' => $address,
  3156. 'package' => $c->package,
  3157. 'retail_price' => 'RM '.$c->retail_price,
  3158. 'incentives1' => $c->incentives1,
  3159. 'incentives2' => $c->incentives2,
  3160. 'total' => 'RM '.$c->total_claim,
  3161. 'claimed' => $c->claim_dt,
  3162. ));
  3163. }
  3164. }
  3165. return \DataTables::of($nested_data)->make(true);
  3166. }
  3167. public function exportPDFClaim($company,$year,$month,$app,$ptype) {
  3168. $final = array();
  3169. $id = Auth::guard('ms')->id();
  3170. $user = Staff::with('StaffDetail')->find($id);
  3171. $com = Company::where('_id',$company)->first();
  3172. $i = 0;
  3173. $dataR = array(); $dataB = array(); $combineData = array();
  3174. $count_cyberjaya = array(); $count_jasin = array(); $count_ayerKeroh = array(); $count_alorGajah = array();
  3175. $extra = 0; $basic_total = 0; $totals = 0;
  3176. if($year!='null' && $month!='null' && $app!='null' && $ptype=='null'){
  3177. if($app == 'Residential'){
  3178. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3179. $q->with('Form');
  3180. }],'Staff')->where('formT', 'R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3181. if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '01')){
  3182. foreach ($dataClaim as $key => $d) {
  3183. if(date('d/m/Y', strtotime($d->activated_dt)) >= '12/12/2019' &&
  3184. date('d/m/Y', strtotime($d->activated_dt)) <= '31/01/2020'){
  3185. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3186. $count_cyberjaya[] = $d;
  3187. }
  3188. if (strpos($d['address'], 'Jasin') !== false) {
  3189. $count_jasin[] = $d;
  3190. }
  3191. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3192. $count_ayerKeroh[] = $d;
  3193. }
  3194. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3195. $count_alorGajah[] = $d;
  3196. }
  3197. }
  3198. }
  3199. }else if($year == '2020' && ($month == '04' || $month == '05' || $month == '06' || $month == '07')){
  3200. foreach ($dataClaim as $key => $d) {
  3201. if(date('d/m/Y', strtotime($d->activated_dt)) >= '27/04/2020' &&
  3202. date('d/m/Y', strtotime($d->activated_dt)) <= '31/07/2020'){
  3203. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3204. $count_cyberjaya[] = $d;
  3205. }
  3206. if (strpos($d['address'], 'Jasin') !== false) {
  3207. $count_jasin[] = $d;
  3208. }
  3209. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3210. $count_ayerKeroh[] = $d;
  3211. }
  3212. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3213. $count_alorGajah[] = $d;
  3214. }
  3215. }
  3216. }
  3217. }
  3218. }else if($app == 'Business'){
  3219. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3220. $q->with('Form');
  3221. }],'Staff')->where('formT', 'B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3222. }
  3223. } else if($year!='null' && $month!='null' && $app!='null' && $ptype!='null'){
  3224. if($app == 'Residential'){
  3225. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3226. $q->with('Form');
  3227. }],'Staff')->where('formT', 'R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3228. if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '01')){
  3229. foreach ($dataClaim as $key => $d) {
  3230. if(date('d/m/Y', strtotime($d->activated_dt)) >= '12/12/2019' &&
  3231. date('d/m/Y', strtotime($d->activated_dt)) <= '31/01/2020'){
  3232. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3233. $count_cyberjaya[] = $d;
  3234. }
  3235. if (strpos($d['address'], 'Jasin') !== false) {
  3236. $count_jasin[] = $d;
  3237. }
  3238. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3239. $count_ayerKeroh[] = $d;
  3240. }
  3241. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3242. $count_alorGajah[] = $d;
  3243. }
  3244. }
  3245. }
  3246. }else if($year == '2020' && ($month == '04' || $month == '05' || $month == '06' || $month == '07')){
  3247. foreach ($dataClaim as $key => $d) {
  3248. if(date('d/m/Y', strtotime($d->activated_dt)) >= '27/04/2020' &&
  3249. date('d/m/Y', strtotime($d->activated_dt)) <= '31/07/2020'){
  3250. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3251. $count_cyberjaya[] = $d;
  3252. }
  3253. if (strpos($d['address'], 'Jasin') !== false) {
  3254. $count_jasin[] = $d;
  3255. }
  3256. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3257. $count_ayerKeroh[] = $d;
  3258. }
  3259. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3260. $count_alorGajah[] = $d;
  3261. }
  3262. }
  3263. }
  3264. }
  3265. }else if($app == 'Business'){
  3266. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3267. $q->with('Form');
  3268. }],'Staff')->where('formT', 'B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3269. }
  3270. }
  3271. if(!empty($dataClaim)){
  3272. foreach ($dataClaim as $c){
  3273. $address = ''; $name = '';
  3274. if($c->Subscriber->Form->type_application == 'R'){
  3275. if($c->Subscriber->street != ''){
  3276. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3277. }else {
  3278. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3279. }
  3280. $name = $c->Subscriber->name;
  3281. }else if($c->Subscriber->Form->type_application == 'B'){
  3282. if($c->Subscriber->unit_no != ''){
  3283. $address = $c->Subscriber->unit_no. ', '.$c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3284. }else {
  3285. $address = $c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3286. }
  3287. $name = $c->Subscriber->company_name;
  3288. }
  3289. $i++;
  3290. array_push($final, array(
  3291. 'index' => $c->formT,
  3292. 'contract' => $c->contract,
  3293. 'wo' => $c->wo,
  3294. 'activated_dt' => $c->activated_dt,
  3295. 'name' => $name,
  3296. 'address' => $address,
  3297. 'package' => $c->package,
  3298. 'retail_price' => 'RM '.$c->retail_price,
  3299. 'incentives1' => $c->incentives1,
  3300. 'incentives2' => $c->incentives2,
  3301. 'total' => 'RM' .$c->total_claim,
  3302. 'claimed' => $c->claim_dt,
  3303. ));
  3304. }
  3305. foreach($dataClaim as $f){
  3306. $basic_total += $f->total_claim;
  3307. $invoice_no = '';
  3308. if(!empty($f->invoice_no)){
  3309. $invoice_no = $f->invoice_no;
  3310. }
  3311. }
  3312. // Calculate extra incentves
  3313. if($month == '01' && $year == '2020'){
  3314. if(count($count_cyberjaya) > 50){
  3315. $balance = count($count_cyberjaya) - 50;
  3316. $extra += $balance * 50;
  3317. }
  3318. if(count($count_jasin) > 10){
  3319. $balance = count($count_jasin) - 10;
  3320. $extra += $balance * 50;
  3321. }
  3322. if(count($count_ayerKeroh) > 10){
  3323. $balance = count($count_ayerKeroh) - 10;
  3324. $extra += $balance * 50;
  3325. }
  3326. if(count($count_alorGajah) > 10){
  3327. $balance = count($count_alorGajah) - 10;
  3328. $extra += $balance * 50;
  3329. }
  3330. }else if($year == '2020' && ($month == '04' || $month == '05' || $month == '06' || $month == '07')){
  3331. if(count($count_cyberjaya) > 50){
  3332. $balance = count($count_cyberjaya) - 50;
  3333. $extra += $balance * 50;
  3334. }
  3335. if(count($count_jasin) > 20){
  3336. $balance = count($count_jasin) - 20;
  3337. $extra += $balance * 50;
  3338. }
  3339. if(count($count_ayerKeroh) > 20){
  3340. $balance = count($count_ayerKeroh) - 20;
  3341. $extra += $balance * 50;
  3342. }
  3343. if(count($count_alorGajah) > 20){
  3344. $balance = count($count_alorGajah) - 20;
  3345. $extra += $balance * 50;
  3346. }
  3347. }else {
  3348. $extra = 0;
  3349. }
  3350. $totals = $basic_total + $extra;
  3351. $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals', 'invoice_no'));
  3352. $pdf->setPaper('A4', 'landscape');
  3353. if($ptype!=null){
  3354. $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$app.'-'.$ptype.'-'.$month.'-'.$year.'.pdf';
  3355. }else{
  3356. $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$app.'-'.$month.'-'.$year.'.pdf';
  3357. }
  3358. return $pdf->download( $pdfName );
  3359. }
  3360. }
  3361. public function manualDate(){
  3362. $final = array();
  3363. $com = Company::where('_id','5bb2bc66ee0dc2271c6fedf6')->first();
  3364. $dataR = array(); $dataB = array(); $combineData = array();
  3365. $count_cyberjaya = array(); $count_jasin = array(); $count_ayerKeroh = array(); $count_alorGajah = array();
  3366. $extra = 0; $basic_total = 0; $totals = 0;
  3367. $dataDis = $this->returnDataR('5bb2bc66ee0dc2271c6fedf6','2019','12');
  3368. foreach ($dataDis as $key => $d) {
  3369. if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  3370. $combineData[] = $d;
  3371. }
  3372. }
  3373. $dataB = $this->returnDataB('5bb2bc66ee0dc2271c6fedf6','2019','12');
  3374. foreach($dataB as $b){
  3375. $combineData[] = $b;
  3376. }
  3377. $i = 0;
  3378. $nested_data = array();
  3379. if(!empty($combineData)){
  3380. foreach ($combineData as $c){
  3381. $i++;
  3382. array_push($final, array(
  3383. 'index' => $c['index'],
  3384. 'contract' => $c['contract'],
  3385. 'wo' => $c['wo'],
  3386. 'activated_dt' => $c['activation'],
  3387. 'name' => $c['name'],
  3388. 'address' => $c['address'],
  3389. 'package' => $c['package'],
  3390. 'retail_price' => $c['retail_price'],
  3391. 'incentives1' => $c['incentives1'],
  3392. 'incentives2' => $c['incentives2'],
  3393. 'total' => $c['total'],
  3394. 'claimed' => $c['claim'],
  3395. ));
  3396. }
  3397. }
  3398. usort($final, function ($a, $b) {
  3399. $dateA = $a['activated_dt'];
  3400. $dateB = $b['activated_dt'];
  3401. // ascending ordering, use `<=` for descending
  3402. return $dateA <= $dateB;
  3403. });
  3404. return json_encode($final);
  3405. }
  3406. }