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 119KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924
  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. foreach ($docket as $a)
  883. {
  884. $i++;
  885. $building = "";
  886. if(!empty($a->WorkOrder->_id)){
  887. $subDetail = Form::with('WorkOrder','Subscriber')->where('_id',$a->WorkOrder->_id)->first();
  888. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  889. $tempInstaller = Staff::with('StaffDetail')->withTrashed()->where('_id',$a->installer_id)->first();
  890. if(!empty($subDetail->Subscriber->building_name))
  891. $building=$subDetail->Subscriber->building_name;
  892. else
  893. $building=$subDetail->Subscriber->company_name;
  894. array_push($nested_data, array(
  895. 'index' => $n1.$i,
  896. 'docket_id' => $a->docket_id,
  897. 'work_order_id' => $a->work_order_id,
  898. 'nature_work' => $a->nature_work,
  899. 'contractor_id' => $contractor->name,
  900. 'installer_name' => $tempInstaller->StaffDetail->name,
  901. 'customer_id' => $building,
  902. 'installer_id' => $tempInstaller->StaffDetail->phone,
  903. 'end_job' => $a->end_job,
  904. 'rating' => round((($a->Rating1 + $a->Rating2 + $a->Rating3)/15) * 100)."%",
  905. ));
  906. }
  907. }
  908. return \DataTables::of($nested_data)->make(true);
  909. }
  910. public function updateClaimDate(Request $request)
  911. {
  912. $claim = DealerClaim::where("_id", $request->id)->first();
  913. if(!empty($claim))
  914. {
  915. $claim->claim_dt = $request->date." ".$request->time;
  916. $claim->save();
  917. return 'true';
  918. }
  919. else
  920. return 'false';
  921. }
  922. public function downloadPDF()
  923. {
  924. $pdf = PDF::loadView('pdf.docket-pdf');
  925. return $pdf->download('invoice.pdf');
  926. // return view('pdf.docket-pdf');
  927. }
  928. public function woList()
  929. {
  930. $id = Auth::guard('ms')->id();
  931. $user = Staff::with('StaffDetail')->find($id);
  932. return view('market.workorder',compact('user'));
  933. }
  934. public function getWoList()
  935. {
  936. $id = Auth::guard('ms')->id();
  937. $user = Staff::with('StaffDetail')->find($id);
  938. // $marketdetail= WorkOrder::with('Form')->where('_id','5b4c18a4ee0dc2b707473b7d')->first();
  939. // $b = array();
  940. $r=0;$b=0;
  941. $subDetail = Form::with('WorkOrder','Subscriber')->orderBy('created_at','desc')->get();
  942. $curr = Carbon::now()->getTimestamp();
  943. $i = 0;
  944. $nested_data = array();
  945. foreach($subDetail as $a)
  946. {
  947. $var1="";
  948. $contractor_name="";
  949. if(empty($a->WorkOrder)){}
  950. else
  951. {
  952. $i++;
  953. $staff = StaffDetail::where('_id', $a->WorkOrder->installer_id)->withTrashed()->first();
  954. $contractor = Company::where('_id', $a->WorkOrder->contractor_id)->first();
  955. if(!empty($staff))
  956. {
  957. $var1 =$staff->name;
  958. }
  959. if(!empty($contractor)){
  960. $contractor_name = $contractor->name;
  961. }
  962. $reg_time = $a->created_at;
  963. $expiry_date = $reg_time->addDays(3);
  964. $expiry_date = $expiry_date->getTimestamp();
  965. $n1 = '';
  966. if($curr < $expiry_date) {
  967. $n1 = "New/";
  968. }
  969. $building = '';
  970. if($a->type_application == 'R'){
  971. $building = $a->Subscriber->building_name;
  972. }else if($a->type_application == 'B'){
  973. $building = $a->Subscriber->company_name;
  974. }
  975. if(!empty($a->Subscriber)){
  976. array_push($nested_data, array(
  977. 'index' => $n1.$i.$a->type_application,
  978. 'nature_work' => $a->WorkOrder->nature_work,
  979. 'wo'=>$a->WorkOrder->wo,
  980. 'customer_name' => $a->Subscriber->name,
  981. 'customer_phone' => $a->Subscriber->phone1,
  982. 'customer_unit' => $a->Subscriber->unit_no,
  983. 'customer_building' => $building,
  984. 'customer_postcode' => $a->Subscriber->postcode,
  985. 'customer_city' => $a->Subscriber->city,
  986. 'contractor_id' => $contractor_name,
  987. 'installer_id' => $var1,
  988. 'dateTimeEnd' => $a->WorkOrder->dateTimeEnd,
  989. 'status' => $a->WorkOrder->status,
  990. ));
  991. }
  992. }
  993. }
  994. return \DataTables::of($nested_data)->make(true);
  995. }
  996. public function filterWo($year, $month, $status)
  997. {
  998. $r = 0;
  999. $b = 0;
  1000. $nested_data = array();
  1001. if($year == 'null' && $month == 'null' & $status !='')
  1002. {
  1003. $i = 0;
  1004. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1005. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->where('status', $status)->get();
  1006. foreach($wo as $a)
  1007. {
  1008. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1009. $contractor = Company::where('_id', $a->contractor_id)->first();
  1010. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1011. $var1 = "";
  1012. if(!empty($installer)){
  1013. $var1 =$installer->name;
  1014. }
  1015. if($a->Form->type_application == "R")
  1016. {
  1017. $r++; $n1 = 'R';
  1018. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1019. if(!empty($customer)){
  1020. array_push($nested_data, array(
  1021. 'index' => $r.$n1,
  1022. 'nature_work' => $a->nature_work,
  1023. 'wo'=>$a->wo,
  1024. 'customer_name' => $customer->name,
  1025. 'customer_phone' => $customer->phone1,
  1026. 'customer_unit' => $customer->unit_no,
  1027. 'customer_building' => $customer->building_name,
  1028. 'customer_postcode' => $customer->postcode,
  1029. 'customer_city' => $customer->city,
  1030. 'contractor_id' => $contractor->name,
  1031. 'installer_id' => $var1,
  1032. 'dateTimeEnd' => $a->dateTimeEnd,
  1033. 'status' => $a->status,
  1034. ));
  1035. }
  1036. }
  1037. if($a->Form->type_application == "B")
  1038. {
  1039. $b++; $n1 = 'B';
  1040. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1041. if(!empty($customer)){
  1042. array_push($nested_data, array(
  1043. 'index' => $b.$n1,
  1044. 'nature_work' => $a->nature_work,
  1045. 'wo'=>$a->wo,
  1046. 'customer_name' => $customer->name,
  1047. 'customer_phone' => $customer->phone1,
  1048. 'customer_unit' => '-',
  1049. 'customer_building' => $customer->company_name,
  1050. 'customer_postcode' => $customer->postcode,
  1051. 'customer_city' => $customer->city,
  1052. 'contractor_id' => $contractor->name,
  1053. 'installer_id' => $var1,
  1054. 'dateTimeEnd' => $a->dateTimeEnd,
  1055. 'status' => $a->status,
  1056. ));
  1057. }
  1058. }
  1059. }
  1060. }
  1061. if($year=='null' && $month == 'null' & $status == 'null')
  1062. {
  1063. $i = 0;
  1064. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1065. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart','desc')->get();
  1066. foreach($wo as $a)
  1067. {
  1068. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1069. $contractor = Company::where('_id', $a->contractor_id)->first();
  1070. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1071. $var1 = "";
  1072. if(!empty($installer)){
  1073. $var1 =$installer->name;
  1074. }
  1075. if($a->Form->type_application == "R")
  1076. {
  1077. $r++; $n1 = 'R';
  1078. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1079. if(!empty($customer)){
  1080. array_push($nested_data, array(
  1081. 'index' => $r.$n1,
  1082. 'nature_work' => $a->nature_work,
  1083. 'wo'=>$a->wo,
  1084. 'customer_name' => $customer->name,
  1085. 'customer_phone' => $customer->phone1,
  1086. 'customer_unit' => $customer->unit_no,
  1087. 'customer_building' => $customer->building_name,
  1088. 'customer_postcode' => $customer->postcode,
  1089. 'customer_city' => $customer->city,
  1090. 'contractor_id' => $contractor->name,
  1091. 'installer_id' => $var1,
  1092. 'dateTimeEnd' => $a->dateTimeEnd,
  1093. 'status' => $a->status,
  1094. ));
  1095. }
  1096. }
  1097. if($a->Form->type_application == "B")
  1098. {
  1099. $b++; $n1 = 'B';
  1100. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1101. if(!empty($customer)){
  1102. array_push($nested_data, array(
  1103. 'index' => $b.$n1,
  1104. 'nature_work' => $a->nature_work,
  1105. 'wo'=>$a->wo,
  1106. 'customer_name' => $customer->name,
  1107. 'customer_phone' => $customer->phone1,
  1108. 'customer_unit' => '-',
  1109. 'customer_building' => $customer->company_name,
  1110. 'customer_postcode' => $customer->postcode,
  1111. 'customer_city' => $customer->city,
  1112. 'contractor_id' => $contractor->name,
  1113. 'installer_id' => $var1,
  1114. 'dateTimeEnd' => $a->dateTimeEnd,
  1115. 'status' => $a->status,
  1116. ));
  1117. }
  1118. }
  1119. }
  1120. }
  1121. if($year!='' && $month!='' && $status !='')
  1122. {
  1123. $start_month = $year."-".$month."-01 00:00:00";
  1124. $end_month = $year."-".$month."-32 23:59:59";
  1125. // $wo = WorkOrder::orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->where('status',$status)->get();
  1126. $i = 0;
  1127. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1128. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->where('status', $status)->get();
  1129. foreach($wo as $a)
  1130. {
  1131. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1132. $contractor = Company::where('_id', $a->contractor_id)->first();
  1133. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1134. $var1 = "";
  1135. if(!empty($installer)){
  1136. $var1 =$installer->name;
  1137. }
  1138. if($a->Form->type_application == "R")
  1139. {
  1140. $r++; $n1 = 'R';
  1141. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1142. if(!empty($customer)){
  1143. array_push($nested_data, array(
  1144. 'index' => $r.$n1,
  1145. 'nature_work' => $a->nature_work,
  1146. 'wo'=>$a->wo,
  1147. 'customer_name' => $customer->name,
  1148. 'customer_phone' => $customer->phone1,
  1149. 'customer_unit' => $customer->unit_no,
  1150. 'customer_building' => $customer->building_name,
  1151. 'customer_postcode' => $customer->postcode,
  1152. 'customer_city' => $customer->city,
  1153. 'contractor_id' => $contractor->name,
  1154. 'installer_id' => $var1,
  1155. 'dateTimeEnd' => $a->dateTimeEnd,
  1156. 'status' => $a->status,
  1157. ));
  1158. }
  1159. }
  1160. if($a->Form->type_application == "B")
  1161. {
  1162. $b++; $n1 = 'B';
  1163. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1164. if(!empty($customer)){
  1165. array_push($nested_data, array(
  1166. 'index' => $b.$n1,
  1167. 'nature_work' => $a->nature_work,
  1168. 'wo'=>$a->wo,
  1169. 'customer_name' => $customer->name,
  1170. 'customer_phone' => $customer->phone1,
  1171. 'customer_unit' => '-',
  1172. 'customer_building' => $customer->company_name,
  1173. 'customer_postcode' => $customer->postcode,
  1174. 'customer_city' => $customer->city,
  1175. 'contractor_id' => $contractor->name,
  1176. 'installer_id' => $var1,
  1177. 'dateTimeEnd' => $a->dateTimeEnd,
  1178. 'status' => $a->status,
  1179. ));
  1180. }
  1181. }
  1182. }
  1183. }
  1184. if($year!='' && $month!='' && $status =='null')
  1185. {
  1186. $start_month = $year."-".$month."-01 00:00:00";
  1187. $end_month = $year."-".$month."-32 23:59:59";
  1188. $i = 0;
  1189. // $subDetail = Form::with('WorkOrder','Subscriber')->where('_id', $a->id)->first();
  1190. $wo = WorkOrder::with('Form')->orderBy('dateTimeStart', 'desc')->whereBetween('dateTimeStart', [$start_month, $end_month])->get();
  1191. foreach($wo as $a)
  1192. {
  1193. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1194. $contractor = Company::where('_id', $a->contractor_id)->first();
  1195. $installer = StaffDetail::where('_id', $a->installer_id)->withTrashed()->first();
  1196. $var1 = "";
  1197. if(!empty($installer)){
  1198. $var1 =$installer->name;
  1199. }
  1200. if($a->Form->type_application == "R")
  1201. {
  1202. $r++; $n1 = 'R';
  1203. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1204. if(!empty($customer)){
  1205. array_push($nested_data, array(
  1206. 'index' => $r.$n1,
  1207. 'nature_work' => $a->nature_work,
  1208. 'wo'=>$a->wo,
  1209. 'customer_name' => $customer->name,
  1210. 'customer_phone' => $customer->phone1,
  1211. 'customer_unit' => $customer->unit_no,
  1212. 'customer_building' => $customer->building_name,
  1213. 'customer_postcode' => $customer->postcode,
  1214. 'customer_city' => $customer->city,
  1215. 'contractor_id' => $contractor->name,
  1216. 'installer_id' => $var1,
  1217. 'dateTimeEnd' => $a->dateTimeEnd,
  1218. 'status' => $a->status,
  1219. ));
  1220. }
  1221. }
  1222. if($a->Form->type_application == "B")
  1223. {
  1224. $b++; $n1 = 'B';
  1225. $customer = Subscriber::where('_id', $a->Form->_id)->first();
  1226. if(!empty($customer)){
  1227. array_push($nested_data, array(
  1228. 'index' => $b.$n1,
  1229. 'nature_work' => $a->nature_work,
  1230. 'wo'=>$a->wo,
  1231. 'customer_name' => $customer->name,
  1232. 'customer_phone' => $customer->phone1,
  1233. 'customer_unit' => '-',
  1234. 'customer_building' => $customer->company_name,
  1235. 'customer_postcode' => $customer->postcode,
  1236. 'customer_city' => $customer->city,
  1237. 'contractor_id' => $contractor->name,
  1238. 'installer_id' => $var1,
  1239. 'dateTimeEnd' => $a->dateTimeEnd,
  1240. 'status' => $a->status,
  1241. ));
  1242. }
  1243. }
  1244. }
  1245. }
  1246. return \DataTables::of($nested_data)->make(true);
  1247. }
  1248. /**
  1249. ALL DOWN HERE ARE FOR TESTING AND UTILITIES PURPOSES
  1250. **/
  1251. public function woToLaravel()
  1252. {
  1253. }
  1254. public function checktry()
  1255. {
  1256. $data = Subscriber::where('wo','!=','')->get();
  1257. $wo = WorkOrder::all()->toArray();
  1258. $adawork = array();
  1259. $newarr = array();
  1260. $hmm = array();
  1261. $i = 0;
  1262. foreach($data as $d){
  1263. if(array_search($d->wo, array_column($wo, 'wo')) !== False) { // search value in the array
  1264. // echo "FOUND";
  1265. }else {
  1266. $adawork[] = $d->wo;
  1267. $i++;
  1268. }
  1269. }
  1270. dd($adawork);
  1271. }
  1272. //Insert data into Commission_Laravel table
  1273. public function commissionlara()
  1274. {
  1275. $olddata = Commission::all();
  1276. foreach($olddata as $od)
  1277. {
  1278. $subsData = [
  1279. 'formT' => $od['formT'],
  1280. 'ranges' => $od['ranges'],
  1281. 'comm' => $od['comm'],
  1282. 'category' => $od['category'],
  1283. 'contract' => $od['contract'],
  1284. 'reg_time' => $od['reg_time'],
  1285. 'packageR' => $od['packageR'],
  1286. ];
  1287. Commission::create($subsData);
  1288. }
  1289. return "success";
  1290. }
  1291. //Insert data into Company_Laravel table
  1292. public function companylara()
  1293. {
  1294. $olddata = Company::all();
  1295. foreach($olddata as $od)
  1296. {
  1297. $subsData = [
  1298. 'name' => $od['name'],
  1299. 'address' => $od['address'],
  1300. 'city' => $od['city'],
  1301. 'state' => $od['state'],
  1302. 'postcode' => $od['postcode'],
  1303. 'color' => $od['color'],
  1304. 'team' => $od['team'],
  1305. 'status' => $od['status'],
  1306. 'reg_time' => $od['reg_time'],
  1307. ];
  1308. Company::create($subsData);
  1309. }
  1310. }
  1311. //Insert data into Claim_Laravel table
  1312. public function claimtolara()
  1313. {
  1314. $olddata = DealerClaim::all();
  1315. foreach($olddata as $od)
  1316. {
  1317. $subsData = [
  1318. '_id' => $od['_id'],
  1319. 'formT' => $od['formT'],
  1320. 'wo' => $od['wo'],
  1321. 'dateTimeStart' => $od['dateTimeEnd'],
  1322. 'customer_id' => $od['customer_id'],
  1323. 'contractor_id' => $od['contractor_id'],
  1324. 'installer_id' => $od['installer_id'],
  1325. 'nature_work' => $od['nature_work'],
  1326. 'sub_category' => $od['sub_category'],
  1327. 'img_url' => $od['img_url'],
  1328. 'docket' => $od['docket'],
  1329. 'status'=>$od['status'],
  1330. 'remark'=>$od['remark'],
  1331. 'remarks_inst'=>$od['remarks_inst'],
  1332. 'customer_code'=>$od['customer_code'],
  1333. 'package_bandwidth'=>$od['package_bandwidth'],
  1334. 'subnet_mask'=>$od['subnet_mask'],
  1335. 'login_id'=>$od['login_id'],
  1336. 'password'=>$od['password'],
  1337. 'wan_ip'=>$od['wan_ip'],
  1338. 'lan_ip'=>$od['lan_ip'],
  1339. 'gateway'=>$od['getaway'],
  1340. 'service_id1'=>$od['service_id2'],
  1341. 'ip_address_onu'=>$od['ip_address_onu'],
  1342. 'gateway_onu'=>$od['gateaway_onu'],
  1343. 'subnet_mask_onu'=>$od['subnet_mask_onu'],
  1344. 'ip_address_srp'=>$od['ip_address_srp'],
  1345. 'dectphone1'=>$od['dectphone1'],
  1346. 'dectphone2'=>$od['dectphone2'],
  1347. 'onu'=>$od['onu'],
  1348. 'router'=>$od['router'],
  1349. 'wifi_extender'=>$od['wifi_extender'],
  1350. 'reg_time'=>$od['reg_time'],
  1351. ];
  1352. DealerClaim::create($subsData);
  1353. }
  1354. }
  1355. //Add total form by month to Claim Laravel collection
  1356. public function claimaddtotal()
  1357. {
  1358. $getdata = DealerClaim::all();
  1359. $total = 0;
  1360. foreach($getdata as $a)
  1361. {
  1362. if($a->activated_my == "2/2019")
  1363. {
  1364. $total += 1;
  1365. }
  1366. }
  1367. $adddata = DealerClaim::all();
  1368. foreach($adddata as $a)
  1369. {
  1370. if($a->activated_my == "2/2019")
  1371. {
  1372. $a->total_form_by_month = $total;
  1373. $a->save();
  1374. }
  1375. }
  1376. }
  1377. public function generateWorkOrderPDF($wo){
  1378. $id = Auth::guard('ms')->id();
  1379. $user = Staff::with('StaffDetail')->find($id);
  1380. $wo = WorkOrder::where('wo',$wo)->first();
  1381. $form = Form::with('PackageDetail','Subscriber')->where('_id',$wo->_id)->first();
  1382. $product = Product::where('formT',$form->type_application)->where('speed',$form->PackageDetail->name)->first();
  1383. if(empty($product)){
  1384. $product = 'RMbps';
  1385. }else {
  1386. $product = $product->package_name;
  1387. }
  1388. $created_by = Staff::with('StaffDetail')->where("_id",$wo->created_by)->first();
  1389. if(empty($created_by)){
  1390. $created_by = '';
  1391. }
  1392. $created_at = Carbon::parse($wo->created_at)->toDateTimeString();
  1393. $address = '';
  1394. if($form->type_application == 'R'){
  1395. if($form->Subscriber->street != ''){
  1396. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1397. }else {
  1398. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1399. }
  1400. }else if($form->type_application == 'B'){
  1401. if($form->Subscriber->unit_no != ''){
  1402. $address = $form->Subscriber->unit_no. ', '.$form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1403. }else {
  1404. $address = $form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1405. }
  1406. }
  1407. $pdf = PDF::loadView('pdf.workorder-pdf',compact('wo','form','product','created_at','created_by','address'));
  1408. $pdf->setPaper('A4', 'potrait');
  1409. return $pdf->stream();
  1410. }
  1411. public function generateDocketPDF($do)
  1412. {
  1413. $id = Auth::guard('ms')->id();
  1414. $user = Staff::with('StaffDetail')->find($id);
  1415. $docket = Docket::with('WorkOrder')->where('docket_id',$do)->first();
  1416. if(!empty($docket)){
  1417. $form = Form::with('Subscriber','PackageDetail')->where('_id',$docket->WorkOrder->_id)->first();
  1418. $address = '';
  1419. if($form->type_application == 'R'){
  1420. if($form->Subscriber->street != ''){
  1421. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1422. }else {
  1423. $address = $form->Subscriber->unit_no. ' , '.$form->Subscriber->building_name. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1424. }
  1425. }else if($form->type_application == 'B'){
  1426. if($form->Subscriber->unit_no != ''){
  1427. $address = $form->Subscriber->unit_no. ', '.$form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1428. }else {
  1429. $address = $form->Subscriber->company_name. ', '.$form->Subscriber->street. ' , '.$form->Subscriber->postcode. ' , '.$form->Subscriber->city. ' , '.$form->Subscriber->state;
  1430. }
  1431. }
  1432. $product = Product::where('formT',$form->type_application)->where('speed',$form->PackageDetail->name)->first();
  1433. $installer = Staff::with('StaffDetail')->where('_id',$docket->installer_id)->withTrashed()->first();
  1434. if(empty($product)){
  1435. $product = 'RMbps';
  1436. }else {
  1437. $product = $product->package_name;
  1438. }
  1439. $dateTime = Carbon::parse($docket->WorkOrder->dateTimeStart)->toDateTimeString();
  1440. $edateTime = Carbon::parse($docket->end_job)->toDateTimeString();
  1441. $pdf = PDF::loadView('pdf.docket-pdf',compact('docket','form','address','product','installer','dateTime','edateTime'));
  1442. $pdf->setPaper('A4', 'potrait');
  1443. return $pdf->stream();
  1444. }
  1445. }
  1446. public function mClaimAll($agent_id)
  1447. {
  1448. $id = Auth::guard('ms')->id();
  1449. $user = Staff::with('StaffDetail')->find($id);
  1450. $getid = $agent_id;
  1451. $temp = StaffDetail::where('_id', $agent_id)->first();
  1452. $company = $temp->company_id;
  1453. return view('market.claim_list',compact('user','getid','company'));
  1454. }
  1455. //Show claim list by company
  1456. public function mClaimListAll($company)
  1457. {
  1458. $id = Auth::guard('ms')->id();
  1459. $user = Staff::with('StaffDetail')->find($id);
  1460. $dealer_claimAll = DealerClaim::where('dealer',$company)->orderBy('activated_dt','desc')->get();
  1461. $i = 0;
  1462. $nested_data = array();
  1463. foreach ($dealer_claimAll as $c){
  1464. $customer = Subscriber::with('Form')->where('_id', $c->customer_id)->first();
  1465. $address = ''; $name = '';
  1466. if($customer->Form->type_application == 'R'){
  1467. if($customer->street != ''){
  1468. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1469. }else {
  1470. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1471. }
  1472. $name = $customer->name;
  1473. }else if($customer->Form->type_application == 'B'){
  1474. if($customer->unit_no != ''){
  1475. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1476. }else {
  1477. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1478. }
  1479. $name = $customer->company_name;
  1480. }
  1481. $i++;
  1482. array_push($nested_data, array(
  1483. 'index' => $c->formT,
  1484. 'contract' => $c->contract,
  1485. 'wo' => $c->wo,
  1486. 'activated_dt' => $c->activated_dt,
  1487. 'name' => $name,
  1488. 'address' => $address,
  1489. 'package' => $c->package,
  1490. 'retail_price' => 'RM '.$c->retail_price,
  1491. 'incentives1' => '',
  1492. 'incentives2' => '',
  1493. 'total' => '',
  1494. 'claimed' => $c->laim_dt,
  1495. 'action' => 'null',
  1496. ));
  1497. }
  1498. return \DataTables::of($nested_data)->make(true);
  1499. }
  1500. // Get Dealer Claim Residential
  1501. public function returnDataR($company,$year,$month){
  1502. $dataCR = DealerClaim::where('formT','R')->where('dealer',$company)->orderBy('activated_dt', 'desc')->get();
  1503. $final = array();
  1504. // Month & Year
  1505. $mY = '';
  1506. if($year != 'null' && $month != 'null'){
  1507. $mY = $month.'/'.$year;
  1508. }
  1509. if($mY != ''){
  1510. $data12 = array(); $data24 = array();
  1511. $countD12 = 0; $countD24 = 0;
  1512. foreach($dataCR as $dc){
  1513. if($dc->activated_my == $mY || $dc->activated_my == '0'.$mY ){
  1514. if($dc->contract == "12"){
  1515. $data12[] = $dc;
  1516. }else if($dc->contract == "24"){
  1517. $data24[] = $dc;
  1518. }
  1519. }
  1520. }
  1521. $countD24 = count($data24);
  1522. $countD12 = count($data12);
  1523. $comm = Commission::where('formT','R')->get();
  1524. $commV12 = 0; $commV24 = 0;
  1525. $comm12 = ''; $comm24 = '';
  1526. foreach($comm as $c){
  1527. if($c->contract =='12'){
  1528. if(strpos($c->ranges, '>') !== false) {
  1529. $pieces = explode(">", $c->ranges);
  1530. if($countD12 >= intval($pieces[1])){
  1531. $commV12 = floatval($c->comm)/100;
  1532. $comm12 = $c->comm.'%';
  1533. }
  1534. }
  1535. if(strpos($c->ranges,'-') !== false){
  1536. $pieces = explode("-", $c->ranges);
  1537. if($countD12 >= intval($pieces[0]) && $countD12 <= intval($pieces[1])){
  1538. $commV12 = floatval($c->comm)/100;
  1539. $comm12 = $c->comm.'%';
  1540. }
  1541. }
  1542. }else if($c->contract =='24'){
  1543. // Contract => 24
  1544. if($countD24 != 0){
  1545. if(strpos($c->ranges, '>') !== false) {
  1546. $pieces = explode(">", $c->ranges);
  1547. if($countD24 > intval($pieces[1])){
  1548. $commV24 = floatval($c->comm)/100;
  1549. $comm24 = $c->comm.'%';
  1550. }
  1551. }
  1552. if(strpos($c->ranges,'-') !== false){
  1553. $pieces = explode("-", $c->ranges);
  1554. if($countD24 >= intval($pieces[0]) && $countD24 <= intval($pieces[1])){
  1555. $commV24 = floatval($c->comm)/100;
  1556. $comm24 = $c->comm.'%';
  1557. }
  1558. }
  1559. }
  1560. }
  1561. }
  1562. foreach ($data12 as $key => $d) {
  1563. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1564. $address = ''; $name = '';
  1565. if($customer->Form->type_application == 'R'){
  1566. if($customer->street != ''){
  1567. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1568. }else {
  1569. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1570. }
  1571. $name = $customer->name;
  1572. }else if($customer->Form->type_application == 'B'){
  1573. if($customer->unit_no != ''){
  1574. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1575. }else {
  1576. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1577. }
  1578. $name = $customer->company_name;
  1579. }
  1580. $final[] = array(
  1581. 'index' => $d['formT'],
  1582. 'contract' => $d['contract'],
  1583. 'wo' => $d['wo'],
  1584. 'activation' => $d['activated_dt'],
  1585. 'name' => $name,
  1586. 'address' => $address,
  1587. 'package' => $d['package'],
  1588. 'retail_price' => 'RM '.$d['retail_price'],
  1589. 'incentives1' => $comm12,
  1590. 'incentives2' => '',
  1591. 'total' => 'RM '.number_format($d['retail_price']*$commV12,2),
  1592. 'claim' => $d['claim_dt'],
  1593. );
  1594. }
  1595. foreach ($data24 as $key => $d) {
  1596. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1597. $address = ''; $name = '';
  1598. if($customer->Form->type_application == 'R'){
  1599. if($customer->street != ''){
  1600. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1601. }else {
  1602. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1603. }
  1604. $name = $customer->name;
  1605. }else if($customer->Form->type_application == 'B'){
  1606. if($customer->unit_no != ''){
  1607. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1608. }else {
  1609. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1610. }
  1611. $name = $customer->company_name;
  1612. }
  1613. $final[] = array(
  1614. 'index' => $d['formT'],
  1615. 'contract' => $d['contract'],
  1616. 'wo' => $d['wo'],
  1617. 'activation' => $d['activated_dt'],
  1618. 'name' => $name,
  1619. 'address' => $address,
  1620. 'package' => $d['package'],
  1621. 'retail_price' => 'RM '.$d['retail_price'],
  1622. 'incentives1' => $comm24,
  1623. 'incentives2' => '',
  1624. 'total' => 'RM '.number_format($d['retail_price']*$commV24,2),
  1625. 'claim' => $d['claim_dt'],
  1626. );
  1627. }
  1628. }else {
  1629. foreach ($dataCR as $c){
  1630. $customer = Subscriber::with('Form')->where('_id', $c['customer_id'])->first();
  1631. $address = ''; $name = '';
  1632. if($customer->Form->type_application == 'R'){
  1633. if($customer->street != ''){
  1634. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1635. }else {
  1636. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1637. }
  1638. $name = $customer->name;
  1639. }else if($customer->Form->type_application == 'B'){
  1640. if($customer->unit_no != ''){
  1641. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1642. }else {
  1643. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1644. }
  1645. $name = $customer->company_name;
  1646. }
  1647. $final[] = array(
  1648. 'index' => $c['formT'],
  1649. 'contract' => $c['contract'],
  1650. 'wo' => $c['wo'],
  1651. 'activation' => $c['activated_dt'],
  1652. 'name' => $name,
  1653. 'address' => $address,
  1654. 'package' => $c['package'],
  1655. 'retail_price' => 'RM '.$c['retail_price'],
  1656. 'incentives1' => '',
  1657. 'incentives2' => '',
  1658. 'total' => '',
  1659. 'claim' => $c['claim_dt'],
  1660. );
  1661. }
  1662. }
  1663. return $final;
  1664. }
  1665. // Get Claim Business
  1666. public function returnDataB($company,$year,$month){
  1667. $dataCB = DealerClaim::where('formT','B')->where('dealer',$company)->orderBy('activated_dt', 'desc')->get();
  1668. $final = array();
  1669. // Month & Year
  1670. $mY = '';
  1671. if($year != 'null' && $month != 'null'){
  1672. $mY = $month.'/'.$year;
  1673. }
  1674. if($mY != ''){
  1675. /** Contract 12
  1676. // 1=>10-100 2=>300 3=>500 4=>1
  1677. **/
  1678. $data12_1 = array(); $data12_2 = array();
  1679. $data12_3 = array(); $data12_4 = array();
  1680. $countD12_1 = 0; $countD12_2 = 0;
  1681. $countD12_3 = 0; $countD12_4 = 0;
  1682. /** Contract 24
  1683. // 1=>10-100 2=>300 3=>500 4=>1
  1684. **/
  1685. $data24_1 = array(); $data24_2 = array();
  1686. $data24_3 = array(); $data24_4 = array();
  1687. $countD24_1 = 0; $countD24_2 = 0;
  1688. $countD24_3 = 0; $countD24_4 = 0;
  1689. foreach($dataCB as $dc){
  1690. if($dc->activated_my == $mY || $dc->activated_my == '0'.$mY){
  1691. if($dc->contract == "12" && ($dc->package == "10" || $dc->package == "30" || $dc->package == "50" || $dc->package == "100")){
  1692. $data12_1[] = $dc;
  1693. }else if($dc->contract == "12" && $dc->package == "300"){
  1694. $data12_2[] = $dc;
  1695. }else if($dc->contract == "12" && $dc->package == "500"){
  1696. $data12_3[] = $dc;
  1697. }else if($dc->contract == "12" && $dc->package == "1"){
  1698. $data12_4[] = $dc;
  1699. }else if($dc->contract == "24" && ($dc->package == "10" || $dc->package == "30" || $dc->package == "50" || $dc->package == "100")){
  1700. $data24_1[] = $dc;
  1701. }else if($dc->contract == "24" && $dc->package == "300"){
  1702. $data24_2[] = $dc;
  1703. }else if($dc->contract == "24" && $dc->package == "500"){
  1704. $data24_3[] = $dc;
  1705. }else if($dc->contract == "24" && $dc->package == "1"){
  1706. $data24_4[] = $dc;
  1707. }
  1708. }
  1709. }
  1710. $countD12_1 = count($data12_1); $countD12_2 = count($data12_2);
  1711. $countD12_3 = count($data12_3); $countD12_4 = count($data12_4);
  1712. $countD24_1 = count($data24_1); $countD24_2 = count($data24_2);
  1713. $countD24_3 = count($data24_3); $countD24_4 = count($data24_4);
  1714. $comm = Commission::where('formT','B')->get();
  1715. $commV12_1 = 0; $commV12_2 = 0;
  1716. $commV12_3 = 0; $commV12_4 = 0;
  1717. $commV24_1 = 0; $commV24_2 = 0;
  1718. $commV24_3 = 0; $commV24_4 = 0;
  1719. $comm12_1 = ''; $comm12_2 = '';
  1720. $comm12_3 = ''; $comm12_4 = '';
  1721. $comm24_1 = ''; $comm24_2 = '';
  1722. $comm24_3 = ''; $comm24_4 = '';
  1723. $addRM12_1 = ''; $addRM12_2 = '';
  1724. $addRM12_3 = ''; $addRM12_4 = '';
  1725. $addRM24_1 = ''; $addRM24_2 = '';
  1726. $addRM24_3 = ''; $addRM24_4 = '';
  1727. foreach($comm as $c){
  1728. /*** Contract 24 **/
  1729. if($c->contract =='24' && $c->packageR == "300"){
  1730. if(strpos($c->ranges, '>') !== false) {
  1731. $pieces = explode(">", $c->ranges);
  1732. if($countD24_2 >= intval($pieces[1])){
  1733. if(strpos($c->comm, 'RM') !== false) {
  1734. $comm24_2 = '+ ' .$c->comm;
  1735. $commV24_2 = '';
  1736. $comms = explode("RM", $c->comm);
  1737. $addRM24_2 = floatval($comms[1]);
  1738. }else {
  1739. $comms = explode("RM", $c->comm);
  1740. if(isset($comms[1])){
  1741. $comm24_2 = 'RM '.$comms[1];
  1742. $commV24_2 = floatval($comms[1]);
  1743. }else {
  1744. if($comms[0] != ''){
  1745. $comm24_2 = $comms[0].'%';
  1746. $commV24_2 = floatval($comms[0])/100;
  1747. }
  1748. }
  1749. }
  1750. }
  1751. }
  1752. }else if($c->contract =='24' && $c->packageR == "500"){
  1753. if(strpos($c->ranges, '>') !== false) {
  1754. $pieces = explode(">", $c->ranges);
  1755. if($countD24_3 >= intval($pieces[1])){
  1756. if(strpos($c->comm, 'RM') !== false) {
  1757. $comm24_3 = '+ ' .$c->comm;
  1758. $commV24_3 = '';
  1759. $comms = explode("RM", $c->comm);
  1760. $addRM24_3 = floatval($comms[1]);
  1761. }else {
  1762. $comms = explode("RM", $c->comm);
  1763. if(isset($comms[1])){
  1764. $comm24_3 = 'RM '.$comms[1];
  1765. $commV24_3 = floatval($comms[1]);
  1766. }else {
  1767. if($comms[0] != ''){
  1768. $comm24_3 = $comms[0].'%';
  1769. $commV24_3 = floatval($comms[0])/100;
  1770. }
  1771. }
  1772. }
  1773. }
  1774. }
  1775. }else if($c->contract =='24' && $c->packageR == "1"){
  1776. if(strpos($c->ranges, '>') !== false) {
  1777. $pieces = explode(">", $c->ranges);
  1778. if($countD24_4 >= intval($pieces[1])){
  1779. if(strpos($c->comm, 'RM') !== false) {
  1780. $comm24_4 = '+ ' .$c->comm;
  1781. $commV24_4 = '';
  1782. $comms = explode("RM", $c->comm);
  1783. $addRM24_4 = floatval($comms[1]);
  1784. }else {
  1785. $comms = explode("RM", $c->comm);
  1786. if(isset($comms[1])){
  1787. $comm24_4 = 'RM '.$comms[1];
  1788. $commV24_4 = floatval($comms[1]);
  1789. }else {
  1790. if($comms[0] != ''){
  1791. $comm24_4 = $comms[0].'%';
  1792. $commV24_4 = floatval($comms[0])/100;
  1793. }
  1794. }
  1795. }
  1796. }
  1797. }
  1798. }else if($c->contract =='24' && $c->packageR == "10,30,50,100"){
  1799. if(strpos($c->ranges,'-') !== false){
  1800. $pieces = explode("-", $c->ranges);
  1801. if($countD24_1 >= intval($pieces[0]) && $countD24_1 <= intval($pieces[1])){
  1802. if(strpos($c->comm, 'RM') !== false) {
  1803. $comm24_1 = '+ ' .$c->comm;
  1804. $commV24_1 = '';
  1805. $addRM24_1 = $c->comm;
  1806. }else {
  1807. $comms = explode("RM", $c->comm);
  1808. if(!empty($comms[1])){
  1809. $comm24_1 = 'RM '.$comms[1];
  1810. $commV24_1 = floatval($comms[1]);
  1811. }else {
  1812. if($comms[0] != ''){
  1813. $comm24_1 = $comms[0].'%';
  1814. $commV24_1 = floatval($comms[0])/100;
  1815. }
  1816. }
  1817. }
  1818. }
  1819. }
  1820. if(strpos($c->ranges, '>') !== false) {
  1821. $pieces1 = explode(">", $c->ranges);
  1822. if($countD24_1 >= intval($pieces1[1])){
  1823. if(strpos($c->comm, "RM") === true) {
  1824. $comm24_1 = '+ ' .$c->comm;
  1825. $commV24_1 = '';
  1826. $addRM24_1 = $c->comm;
  1827. }else {
  1828. $comms = explode("RM", $c->comm);
  1829. if(empty($comms[1])){
  1830. $comm24_1 = 'RM '.$comms[1];
  1831. $commV24_1 = floatval($comms[1]);
  1832. }else {
  1833. if($comms[0] != ''){
  1834. $comm24_1 = str_replace ('+ ','',$comms[0]).'%';
  1835. $commV24_1 = floatval($comms[0])/100;
  1836. $addRM24_1 = $comms[1];
  1837. }
  1838. }
  1839. }
  1840. }
  1841. }
  1842. }
  1843. /*** Contract 12 **/
  1844. else if($c->contract =='12' && $c->packageR == "10,30,50,100"){
  1845. if(strpos($c->ranges, '>') !== false) {
  1846. $pieces = explode(">", $c->ranges);
  1847. if($countD12_1 >= intval($pieces[1])){
  1848. if(strpos($c->comm, 'RM') !== false) {
  1849. $comm12_1 = '+ ' .$c->comm;
  1850. $commV12_1 = '';
  1851. $addRM12_1 = $c->comm;
  1852. }else {
  1853. $comms = explode("RM", $c->comm);
  1854. if(isset($comms[1])){
  1855. $comm12_1 = 'RM '.$comms[1];
  1856. $commV12_1 = floatval($comms[1]);
  1857. }else {
  1858. if($comms[0] != ''){
  1859. $comm12_1 = $comms[0].'%';
  1860. $commV12_1 = floatval($comms[0])/100;
  1861. }
  1862. }
  1863. }
  1864. }
  1865. }
  1866. if(strpos($c->ranges,'-') !== false){
  1867. $pieces = explode("-", $c->ranges);
  1868. if($countD12_1 >= intval($pieces[0]) && $countD12_1 <= intval($pieces[1])){
  1869. if(strpos($c->comm, 'RM') !== false) {
  1870. $comm12_1 = '+ ' .$c->comm;
  1871. $commV12_1 = '';
  1872. $addRM12_1 = $c->comm;
  1873. }else {
  1874. $comms = explode("RM", $c->comm);
  1875. if(isset($comms[1])){
  1876. $comm12_1 = 'RM '.$comms[1];
  1877. $commV12_1 = floatval($comms[1]);
  1878. }else {
  1879. if($comms[0] != ''){
  1880. $comm12_1 = $comms[0].'%';
  1881. $commV12_1 = floatval($comms[0])/100;
  1882. }
  1883. }
  1884. }
  1885. }
  1886. }
  1887. }else if($c->contract =='12' && $c->packageR == "300"){
  1888. if(strpos($c->ranges, '>') !== false) {
  1889. $pieces = explode(">", $c->ranges);
  1890. if($countD12_2 >= intval($pieces[1])){
  1891. if(strpos($c->comm, 'RM') !== false) {
  1892. $comm12_2 = '+ ' .$c->comm;
  1893. $commV12_2 = '';
  1894. $addRM12_2 = $c->comm;
  1895. }else {
  1896. $comms = explode("RM", $c->comm);
  1897. if(isset($comms[1])){
  1898. $comm12_2 = 'RM '.$comms[1];
  1899. $commV12_2 = floatval($comms[1]);
  1900. }else {
  1901. if($comms[0] != ''){
  1902. $comm12_2 = $comms[0].'%';
  1903. $commV12_2 = floatval($comms[0])/100;
  1904. }
  1905. }
  1906. }
  1907. }
  1908. }
  1909. }else if($c->contract =='12' && $c->packageR == "500"){
  1910. if(strpos($c->ranges, '>') !== false) {
  1911. $pieces = explode(">", $c->ranges);
  1912. if($countD12_3 >= intval($pieces[1])){
  1913. if(strpos($c->comm, 'RM') !== false) {
  1914. $comm12_3 = '+ ' .$c->comm;
  1915. $commV12_3 = '';
  1916. $addRM12_3 = $c->comm;
  1917. }else {
  1918. $comms = explode("RM", $c->comm);
  1919. if(isset($comms[1])){
  1920. $comm12_3 = 'RM '.$comms[1];
  1921. $commV12_3 = floatval($comms[1]);
  1922. }else {
  1923. if($comms[0] != ''){
  1924. $comm12_3 = $comms[0].'%';
  1925. $commV12_3 = floatval($comms[0])/100;
  1926. }
  1927. }
  1928. }
  1929. }
  1930. }
  1931. }else if($c->contract =='12' && $c->packageR == "1"){
  1932. if(strpos($c->ranges, '>') !== false) {
  1933. $pieces = explode(">", $c->ranges);
  1934. if($countD12_4 >= intval($pieces[1])){
  1935. if(strpos($c->comm, 'RM') !== false) {
  1936. $comm12_4 = '+ ' .$c->comm;
  1937. $commV12_4 = '';
  1938. $addRM12_4 = $c->comm;
  1939. }else {
  1940. $comms = explode("RM", $c->comm);
  1941. if(isset($comms[1])){
  1942. $comm12_4 = 'RM '.$comms[1];
  1943. $commV12_4 = floatval($comms[1]);
  1944. }else {
  1945. if($comms[0] != ''){
  1946. $comm12_4 = $comms[0].'%';
  1947. $commV12_4 = floatval($comms[0])/100;
  1948. }
  1949. }
  1950. }
  1951. }
  1952. }
  1953. }
  1954. }
  1955. // Category 10,30,50,100
  1956. foreach ($data12_1 as $key => $d) {
  1957. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1958. $address = ''; $name = '';
  1959. if($customer->Form->type_application == 'R'){
  1960. if($customer->street != ''){
  1961. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1962. }else {
  1963. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1964. }
  1965. $name = $customer->name;
  1966. }else if($customer->Form->type_application == 'B'){
  1967. if($customer->unit_no != ''){
  1968. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1969. }else {
  1970. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  1971. }
  1972. $name = $customer->company_name;
  1973. }
  1974. $total = '';
  1975. if($commV12_1 == ''){
  1976. $total = $addRM12_1;
  1977. }else {
  1978. $total = number_format($d['retail_price']*$commV12_1,2);
  1979. }
  1980. $final[] = array(
  1981. 'index' => $d['formT'],
  1982. 'contract' => $d['contract'],
  1983. 'wo' => $d['wo'],
  1984. 'activation' => $d['activated_dt'],
  1985. 'name' => $name,
  1986. 'address' => $address,
  1987. 'package' => $d['package'],
  1988. 'retail_price' => 'RM '.$d['retail_price'],
  1989. 'incentives1' => $comm12_1,
  1990. 'incentives2' => $addRM12_1,
  1991. 'total' => 'RM '.$total,
  1992. 'claim' => $c['claim_dt'],
  1993. );
  1994. }
  1995. foreach ($data24_1 as $key => $d) {
  1996. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  1997. $address = ''; $name = '';
  1998. if($customer->Form->type_application == 'R'){
  1999. if($customer->street != ''){
  2000. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2001. }else {
  2002. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2003. }
  2004. $name = $customer->name;
  2005. }else if($customer->Form->type_application == 'B'){
  2006. if($customer->unit_no != ''){
  2007. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2008. }else {
  2009. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2010. }
  2011. $name = $customer->company_name;
  2012. }
  2013. $total = '';
  2014. if($commV24_1 == ''){
  2015. $total = $addRM24_1;
  2016. }else {
  2017. $total = number_format(($d['retail_price']*$commV24_1) + floatval($addRM24_1),2);
  2018. }
  2019. $final[] = array(
  2020. 'index' => $d['formT'],
  2021. 'contract' => $d['contract'],
  2022. 'wo' => $d['wo'],
  2023. 'activation' => $d['activated_dt'],
  2024. 'name' => $name,
  2025. 'address' => $address,
  2026. 'package' => $d['package'],
  2027. 'retail_price' => 'RM '.$d['retail_price'],
  2028. 'incentives1' => $comm24_1,
  2029. 'incentives2' => $addRM24_1,
  2030. 'total' => 'RM '.$total,
  2031. 'claim' => $c['claim_dt'],
  2032. );
  2033. }
  2034. // Category 300
  2035. foreach ($data12_2 as $key => $d) {
  2036. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2037. $address = ''; $name = '';
  2038. if($customer->Form->type_application == 'R'){
  2039. if($customer->street != ''){
  2040. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2041. }else {
  2042. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2043. }
  2044. $name = $customer->name;
  2045. }else if($customer->Form->type_application == 'B'){
  2046. if($customer->unit_no != ''){
  2047. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2048. }else {
  2049. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2050. }
  2051. $name = $customer->company_name;
  2052. }
  2053. $total = '';
  2054. if($commV12_2 == ''){
  2055. $total = $addRM12_2;
  2056. }else {
  2057. $total = number_format($d['retail_price']*$commV12_2,2);
  2058. }
  2059. $final[] = array(
  2060. 'index' => $d['formT'],
  2061. 'contract' => $d['contract'],
  2062. 'wo' => $d['wo'],
  2063. 'activation' => $d['activated_dt'],
  2064. 'name' => $name,
  2065. 'address' => $address,
  2066. 'package' => $d['package'],
  2067. 'retail_price' => 'RM '.$d['retail_price'],
  2068. 'incentives1' => $commV12_2,
  2069. 'incentives2' => $addRM12_2,
  2070. 'total' => 'RM '.$total,
  2071. 'claim' => $c['claim_dt'],
  2072. );
  2073. }
  2074. foreach ($data24_2 as $key => $d) {
  2075. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2076. $address = ''; $name = '';
  2077. if($customer->Form->type_application == 'R'){
  2078. if($customer->street != ''){
  2079. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2080. }else {
  2081. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2082. }
  2083. $name = $customer->name;
  2084. }else if($customer->Form->type_application == 'B'){
  2085. if($customer->unit_no != ''){
  2086. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2087. }else {
  2088. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2089. }
  2090. $name = $customer->company_name;
  2091. }
  2092. $total = '';
  2093. if($commV24_2 == ''){
  2094. $total = $addRM24_2;//number_format($d['retail_price']+$addRM24_2,2);
  2095. }else {
  2096. $total = number_format($d['retail_price']*$commV24_2,2);
  2097. }
  2098. $final[] = array(
  2099. 'index' => $d['formT'],
  2100. 'contract' => $d['contract'],
  2101. 'wo' => $d['wo'],
  2102. 'activation' => $d['activated_dt'],
  2103. 'name' => $name,
  2104. 'address' => $address,
  2105. 'package' => $d['package'],
  2106. 'retail_price' => 'RM '.$d['retail_price'],
  2107. 'incentives1' => $commV24_2,
  2108. 'incentives2' => $comm24_2,
  2109. 'total' => 'RM '.$total,
  2110. 'claim' => $c['claim_dt'],
  2111. );
  2112. }
  2113. // Category 500
  2114. foreach ($data12_3 as $key => $d) {
  2115. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2116. $address = ''; $name = '';
  2117. if($customer->Form->type_application == 'R'){
  2118. if($customer->street != ''){
  2119. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2120. }else {
  2121. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2122. }
  2123. $name = $customer->name;
  2124. }else if($customer->Form->type_application == 'B'){
  2125. if($customer->unit_no != ''){
  2126. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2127. }else {
  2128. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2129. }
  2130. $name = $customer->company_name;
  2131. }
  2132. $total = '';
  2133. if($commV12_3 == ''){
  2134. $total = $addRM12_3;
  2135. }else {
  2136. $total = number_format($d['retail_price']*$commV12_3,2);
  2137. }
  2138. $final[] = array(
  2139. 'index' => $d['formT'],
  2140. 'contract' => $d['contract'],
  2141. 'wo' => $d['wo'],
  2142. 'activation' => $d['activated_dt'],
  2143. 'name' => $name,
  2144. 'address' => $address,
  2145. 'package' => $d['package'],
  2146. 'retail_price' => 'RM '.$d['retail_price'],
  2147. 'incentives1' => $commV12_3,
  2148. 'incentives2' => $addRM12_3,
  2149. 'total' => 'RM '.$total,
  2150. 'claim' => $c['claim_dt'],
  2151. );
  2152. }
  2153. foreach ($data24_3 as $key => $d) {
  2154. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2155. $address = ''; $name = '';
  2156. if($customer->Form->type_application == 'R'){
  2157. if($customer->street != ''){
  2158. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2159. }else {
  2160. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2161. }
  2162. $name = $customer->name;
  2163. }else if($customer->Form->type_application == 'B'){
  2164. if($customer->unit_no != ''){
  2165. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2166. }else {
  2167. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2168. }
  2169. $name = $customer->company_name;
  2170. }
  2171. $total = '';
  2172. if($commV24_3 == ''){
  2173. $total = $addRM24_3; //number_format($d['retail_price']+$addRM24_3,2);
  2174. }else {
  2175. $total = number_format($d['retail_price']*$commV24_3,2);
  2176. }
  2177. $final[] = array(
  2178. 'index' => $d['formT'],
  2179. 'contract' => $d['contract'],
  2180. 'wo' => $d['wo'],
  2181. 'activation' => $d['activated_dt'],
  2182. 'name' => $name,
  2183. 'address' => $address,
  2184. 'package' => $d['package'],
  2185. 'retail_price' => 'RM '.$d['retail_price'],
  2186. 'incentives1' => $commV24_3,
  2187. 'incentives2' => $comm24_3,
  2188. 'total' => 'RM '.$total,
  2189. 'claim' => $c['claim_dt'],
  2190. );
  2191. }
  2192. // Category 1
  2193. foreach ($data12_4 as $key => $d) {
  2194. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2195. $address = ''; $name = '';
  2196. if($customer->Form->type_application == 'R'){
  2197. if($customer->street != ''){
  2198. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2199. }else {
  2200. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2201. }
  2202. $name = $customer->name;
  2203. }else if($customer->Form->type_application == 'B'){
  2204. if($customer->unit_no != ''){
  2205. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2206. }else {
  2207. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2208. }
  2209. $name = $customer->company_name;
  2210. }
  2211. $total = '';
  2212. if($commV12_4 == ''){
  2213. $total = $addRM12_4;
  2214. }else {
  2215. $total = number_format($d['retail_price']*$commV12_4,2);
  2216. }
  2217. $final[] = array(
  2218. 'index' => $d['formT'],
  2219. 'contract' => $d['contract'],
  2220. 'wo' => $d['wo'],
  2221. 'activation' => $d['activated_dt'],
  2222. 'name' => $name,
  2223. 'address' => $address,
  2224. 'package' => $d['package'],
  2225. 'retail_price' => 'RM '.$d['retail_price'],
  2226. 'incentives1' => $commV12_4,
  2227. 'incentives2' => $addRM12_4,
  2228. 'total' => 'RM '.$total,
  2229. 'claim' => $c['claim_dt'],
  2230. );
  2231. }
  2232. foreach ($data24_4 as $key => $d) {
  2233. $customer = Subscriber::with('Form')->where('_id', $d['customer_id'])->first();
  2234. $address = ''; $name = '';
  2235. if($customer->Form->type_application == 'R'){
  2236. if($customer->street != ''){
  2237. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2238. }else {
  2239. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2240. }
  2241. $name = $customer->name;
  2242. }else if($customer->Form->type_application == 'B'){
  2243. if($customer->unit_no != ''){
  2244. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2245. }else {
  2246. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2247. }
  2248. $name = $customer->company_name;
  2249. }
  2250. $total = '';
  2251. if($commV24_4 == ''){
  2252. $total = $addRM24_4; //number_format($d['retail_price']+$addRM24_4,2);
  2253. }else {
  2254. $total = number_format($d['retail_price']*$commV24_4,2);
  2255. }
  2256. $final[] = array(
  2257. 'index' => $d['formT'],
  2258. 'contract' => $d['contract'],
  2259. 'wo' => $d['wo'],
  2260. 'activation' => $d['activated_dt'],
  2261. 'name' => $name,
  2262. 'address' => $address,
  2263. 'package' => $d['package'],
  2264. 'retail_price' => 'RM '.$d['retail_price'],
  2265. 'incentives1' => $commV24_4,
  2266. 'incentives2' => $comm24_4,
  2267. 'total' => 'RM '.$total,
  2268. 'claim' => $c['claim_dt'],
  2269. );
  2270. }
  2271. }else {
  2272. foreach ($dataCB as $c){
  2273. $customer = Subscriber::with('Form')->where('_id', $c['customer_id'])->first();
  2274. $address = ''; $name = '';
  2275. if($customer->Form->type_application == 'R'){
  2276. if($customer->street != ''){
  2277. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2278. }else {
  2279. $address = $customer->unit_no. ' , '.$customer->building_name. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2280. }
  2281. $name = $customer->name;
  2282. }else if($customer->Form->type_application == 'B'){
  2283. if($customer->unit_no != ''){
  2284. $address = $customer->unit_no. ', '.$customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2285. }else {
  2286. $address = $customer->company_name. ', '.$customer->street. ' , '.$customer->postcode. ' , '.$customer->city. ' , '.$customer->state;
  2287. }
  2288. $name = $customer->company_name;
  2289. }
  2290. $final[] = array(
  2291. 'index' => $c['formT'],
  2292. 'contract' => $c['contract'],
  2293. 'wo' => $c['wo'],
  2294. 'activation' => $c['activated_dt'],
  2295. 'name' => $name,
  2296. 'address' => $address,
  2297. 'package' => $c['package'],
  2298. 'retail_price' => 'RM '.$c['retail_price'],
  2299. 'incentives1' => '',
  2300. 'incentives2' => '',
  2301. 'total' => '',
  2302. 'claim' => $c['claim_dt'],
  2303. );
  2304. }
  2305. }
  2306. return $final;
  2307. }
  2308. // public function filterclaim($company,$year,$month,$app)
  2309. // {
  2310. // $id = Auth::guard('ms')->id();
  2311. // $user = Staff::with('StaffDetail')->find($id);
  2312. // $dataR = array(); $dataB = array(); $combineData = array();
  2313. // if($year!='null' && $month!='null' && $app=='null'){
  2314. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2315. // $dataDis = $this->returnDataR($company,'2019','12');
  2316. // $dataJan = $this->returnDataR($company,'2020','1');
  2317. // $count_cyberjaya = array(); $count_jasin = array();
  2318. // foreach ($dataDis as $key => $d) {
  2319. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2320. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2321. // $count_cyberjaya[] = $d;
  2322. // }
  2323. // if (strpos($d['address'], 'Jasin') !== false) {
  2324. // $count_jasin[] = $d;
  2325. // }
  2326. // }else {
  2327. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2328. // $combineData[] = $d;
  2329. // }
  2330. // }
  2331. // }
  2332. // foreach ($dataJan as $key => $d) {
  2333. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2334. // $count_cyberjaya[] = $d;
  2335. // }
  2336. // if (strpos($d['address'], 'Jasin') !== false) {
  2337. // $count_jasin[] = $d;
  2338. // }
  2339. // }
  2340. // // Store to combineData New Incentives Cyberjaya
  2341. // foreach ($count_cyberjaya as $key => $d) {
  2342. // if(count($count_cyberjaya) > 50){
  2343. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2344. // if($d['contract'] == '12'){
  2345. // array_push($combineData, array(
  2346. // 'index' => $d['index'],
  2347. // 'contract' => $d['contract'],
  2348. // 'wo' => $d['wo'],
  2349. // 'activation' => $d['activation'],
  2350. // 'name' => $d['name'],
  2351. // 'address' => $d['address'],
  2352. // 'package' => $d['package'],
  2353. // 'retail_price' => $d['retail_price'],
  2354. // 'incentives1' => $d['incentives1'],
  2355. // 'incentives2' => $d['incentives2'],
  2356. // 'total' => $d['total'],
  2357. // 'claim' => $d['claim'],
  2358. // ));
  2359. // }else {
  2360. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2361. // array_push($combineData, array(
  2362. // 'index' => $d['index'],
  2363. // 'contract' => $d['contract'],
  2364. // 'wo' => $d['wo'],
  2365. // 'activation' => $d['activation'],
  2366. // 'name' => $d['name'],
  2367. // 'address' => $d['address'],
  2368. // 'package' => $d['package'],
  2369. // 'retail_price' => $d['retail_price'],
  2370. // 'incentives1' => '230%',
  2371. // 'incentives2' => $d['incentives2'],
  2372. // 'total' => 'RM '.$total,
  2373. // 'claim' => $d['claim'],
  2374. // ));
  2375. // }
  2376. // }
  2377. // }else if(count($count_cyberjaya) < 50){
  2378. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2379. // array_push($combineData, array(
  2380. // 'index' => $d['index'],
  2381. // 'contract' => $d['contract'],
  2382. // 'wo' => $d['wo'],
  2383. // 'activation' => $d['activation'],
  2384. // 'name' => $d['name'],
  2385. // 'address' => $d['address'],
  2386. // 'package' => $d['package'],
  2387. // 'retail_price' => $d['retail_price'],
  2388. // 'incentives1' => $d['incentives1'],
  2389. // 'incentives2' => $d['incentives2'],
  2390. // 'total' => $d['total'],
  2391. // 'claim' => $d['claim'],
  2392. // ));
  2393. // }
  2394. // }
  2395. // }
  2396. // // Store to combineData New Incentives Jasin
  2397. // foreach ($count_jasin as $key => $d) {
  2398. // if(count($count_jasin) > 10){
  2399. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2400. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2401. // array_push($combineData, array(
  2402. // 'index' => $d['index'],
  2403. // 'contract' => $d['contract'],
  2404. // 'wo' => $d['wo'],
  2405. // 'activation' => $d['activation'],
  2406. // 'name' => $d['name'],
  2407. // 'address' => $d['address'],
  2408. // 'package' => $d['package'],
  2409. // 'retail_price' => $d['retail_price'],
  2410. // 'incentives1' => '230%',
  2411. // 'incentives2' => $d['incentives2'],
  2412. // 'total' => 'RM '.$total,
  2413. // 'claim' => $d['claim'],
  2414. // ));
  2415. // }
  2416. // }else if(count($count_jasin) < 10){
  2417. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2418. // array_push($combineData, array(
  2419. // 'index' => $d['index'],
  2420. // 'contract' => $d['contract'],
  2421. // 'wo' => $d['wo'],
  2422. // 'activation' => $d['activation'],
  2423. // 'name' => $d['name'],
  2424. // 'address' => $d['address'],
  2425. // 'package' => $d['package'],
  2426. // 'retail_price' => $d['retail_price'],
  2427. // 'incentives1' => $d['incentives1'],
  2428. // 'incentives2' => $d['incentives2'],
  2429. // 'total' => $d['total'],
  2430. // 'claim' => $d['claim'],
  2431. // ));
  2432. // }
  2433. // }
  2434. // }
  2435. // }else {
  2436. // $dataR = $this->returnDataR($company,$year,$month);
  2437. // foreach($dataR as $r){
  2438. // $combineData[] = $r;
  2439. // }
  2440. // }
  2441. // $dataB = $this->returnDataB($company,$year,$month);
  2442. // foreach($dataB as $b){
  2443. // $combineData[] = $b;
  2444. // }
  2445. // $i = 0;
  2446. // $nested_data = array();
  2447. // if(!empty($combineData)){
  2448. // foreach ($combineData as $c){
  2449. // $i++;
  2450. // array_push($nested_data, array(
  2451. // 'index' => $c['index'],
  2452. // 'contract' => $c['contract'],
  2453. // 'wo' => $c['wo'],
  2454. // 'activated_dt' => $c['activation'],
  2455. // 'name' => $c['name'],
  2456. // 'address' => $c['address'],
  2457. // 'package' => $c['package'],
  2458. // 'retail_price' => $c['retail_price'],
  2459. // 'incentives1' => $c['incentives1'],
  2460. // 'incentives2' => $c['incentives2'],
  2461. // 'total' => $c['total'],
  2462. // 'claimed' => $c['claim'],
  2463. // ));
  2464. // }
  2465. // }
  2466. // usort($nested_data, function ($a, $b) {
  2467. // $dateA = $a['activated_dt'];
  2468. // $dateB = $b['activated_dt'];
  2469. // // ascending ordering, use `<=` for descending
  2470. // return $dateA <= $dateB;
  2471. // });
  2472. // return \DataTables::of($nested_data)->make(true);
  2473. // }else if($year=='null' && $month=='null' && $app!='null'){
  2474. // if($app == 'Residential'){
  2475. // $dataR = $this->returnDataR($company,$year,$month);
  2476. // }else if($app == 'Business'){
  2477. // $dataB = $this->returnDataB($company,$year,$month);
  2478. // }
  2479. // foreach($dataR as $r){
  2480. // $combineData[] = $r;
  2481. // }
  2482. // foreach($dataB as $b){
  2483. // $combineData[] = $b;
  2484. // }
  2485. // $i = 0;
  2486. // $nested_data = array();
  2487. // if(!empty($combineData)){
  2488. // foreach ($combineData as $c){
  2489. // $i++;
  2490. // array_push($nested_data, array(
  2491. // 'index' => $c['index'],
  2492. // 'contract' => $c['contract'],
  2493. // 'wo' => $c['wo'],
  2494. // 'activated_dt' => $c['activation'],
  2495. // 'name' => $c['name'],
  2496. // 'address' => $c['address'],
  2497. // 'package' => $c['package'],
  2498. // 'retail_price' => $c['retail_price'],
  2499. // 'incentives1' => $c['incentives1'],
  2500. // 'incentives2' => $c['incentives2'],
  2501. // 'total' => $c['total'],
  2502. // 'claimed' => $c['claim'],
  2503. // ));
  2504. // }
  2505. // }
  2506. // usort($nested_data, function ($a, $b) {
  2507. // $dateA = $a['activated_dt'];
  2508. // $dateB = $b['activated_dt'];
  2509. // // ascending ordering, use `<=` for descending
  2510. // return $dateA <= $dateB;
  2511. // });
  2512. // return \DataTables::of($nested_data)->make(true);
  2513. // }else if($year!='null' && $month!='null' && $app!='null'){
  2514. // if($app == 'Residential'){
  2515. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2516. // $dataDis = $this->returnDataR($company,'2019','12');
  2517. // $dataJan = $this->returnDataR($company,'2020','1');
  2518. // $count_cyberjaya = array(); $count_jasin = array();
  2519. // foreach ($dataDis as $key => $d) {
  2520. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2521. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2522. // $count_cyberjaya[] = $d;
  2523. // }
  2524. // if (strpos($d['address'], 'Jasin') !== false) {
  2525. // $count_jasin[] = $d;
  2526. // }
  2527. // }else {
  2528. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2529. // $combineData[] = $d;
  2530. // }
  2531. // }
  2532. // }
  2533. // foreach ($dataJan as $key => $d) {
  2534. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2535. // $count_cyberjaya[] = $d;
  2536. // }
  2537. // if (strpos($d['address'], 'Jasin') !== false) {
  2538. // $count_jasin[] = $d;
  2539. // }
  2540. // }
  2541. // // Store to combineData New Incentives Cyberjaya
  2542. // foreach ($count_cyberjaya as $key => $d) {
  2543. // if(count($count_cyberjaya) > 50){
  2544. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2545. // if($d['contract'] == '12'){
  2546. // array_push($combineData, array(
  2547. // 'index' => $d['index'],
  2548. // 'contract' => $d['contract'],
  2549. // 'wo' => $d['wo'],
  2550. // 'activation' => $d['activation'],
  2551. // 'name' => $d['name'],
  2552. // 'address' => $d['address'],
  2553. // 'package' => $d['package'],
  2554. // 'retail_price' => $d['retail_price'],
  2555. // 'incentives1' => $d['incentives1'],
  2556. // 'incentives2' => $d['incentives2'],
  2557. // 'total' => $d['total'],
  2558. // 'claim' => $d['claim'],
  2559. // ));
  2560. // }else {
  2561. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2562. // array_push($combineData, array(
  2563. // 'index' => $d['index'],
  2564. // 'contract' => $d['contract'],
  2565. // 'wo' => $d['wo'],
  2566. // 'activation' => $d['activation'],
  2567. // 'name' => $d['name'],
  2568. // 'address' => $d['address'],
  2569. // 'package' => $d['package'],
  2570. // 'retail_price' => $d['retail_price'],
  2571. // 'incentives1' => '230%',
  2572. // 'incentives2' => $d['incentives2'],
  2573. // 'total' => 'RM '.$total,
  2574. // 'claim' => $d['claim'],
  2575. // ));
  2576. // }
  2577. // }
  2578. // }else if(count($count_cyberjaya) < 50){
  2579. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2580. // array_push($combineData, array(
  2581. // 'index' => $d['index'],
  2582. // 'contract' => $d['contract'],
  2583. // 'wo' => $d['wo'],
  2584. // 'activation' => $d['activation'],
  2585. // 'name' => $d['name'],
  2586. // 'address' => $d['address'],
  2587. // 'package' => $d['package'],
  2588. // 'retail_price' => $d['retail_price'],
  2589. // 'incentives1' => $d['incentives1'],
  2590. // 'incentives2' => $d['incentives2'],
  2591. // 'total' => $d['total'],
  2592. // 'claim' => $d['claim'],
  2593. // ));
  2594. // }
  2595. // }
  2596. // }
  2597. // // Store to combineData New Incentives Jasin
  2598. // foreach ($count_jasin as $key => $d) {
  2599. // if(count($count_jasin) > 10){
  2600. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2601. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2602. // array_push($combineData, array(
  2603. // 'index' => $d['index'],
  2604. // 'contract' => $d['contract'],
  2605. // 'wo' => $d['wo'],
  2606. // 'activation' => $d['activation'],
  2607. // 'name' => $d['name'],
  2608. // 'address' => $d['address'],
  2609. // 'package' => $d['package'],
  2610. // 'retail_price' => $d['retail_price'],
  2611. // 'incentives1' => '230%',
  2612. // 'incentives2' => $d['incentives2'],
  2613. // 'total' => 'RM '.$total,
  2614. // 'claim' => $d['claim'],
  2615. // ));
  2616. // }
  2617. // }else if(count($count_jasin) < 10){
  2618. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2619. // array_push($combineData, array(
  2620. // 'index' => $d['index'],
  2621. // 'contract' => $d['contract'],
  2622. // 'wo' => $d['wo'],
  2623. // 'activation' => $d['activation'],
  2624. // 'name' => $d['name'],
  2625. // 'address' => $d['address'],
  2626. // 'package' => $d['package'],
  2627. // 'retail_price' => $d['retail_price'],
  2628. // 'incentives1' => $d['incentives1'],
  2629. // 'incentives2' => $d['incentives2'],
  2630. // 'total' => $d['total'],
  2631. // 'claim' => $d['claim'],
  2632. // ));
  2633. // }
  2634. // }
  2635. // }
  2636. // }else {
  2637. // $dataR = $this->returnDataR($company,$year,$month);
  2638. // foreach($dataR as $r){
  2639. // $combineData[] = $r;
  2640. // }
  2641. // }
  2642. // }else if($app == 'Business'){
  2643. // $dataB = $this->returnDataB($company,$year,$month);
  2644. // }
  2645. // foreach($dataB as $b){
  2646. // $combineData[] = $b;
  2647. // }
  2648. // $i = 0;
  2649. // $nested_data = array();
  2650. // if(!empty($combineData)){
  2651. // foreach ($combineData as $c){
  2652. // $i++;
  2653. // array_push($nested_data, array(
  2654. // 'index' => $c['index'],
  2655. // 'contract' => $c['contract'],
  2656. // 'wo' => $c['wo'],
  2657. // 'activated_dt' => $c['activation'],
  2658. // 'name' => $c['name'],
  2659. // 'address' => $c['address'],
  2660. // 'package' => $c['package'],
  2661. // 'retail_price' => $c['retail_price'],
  2662. // 'incentives1' => $c['incentives1'],
  2663. // 'incentives2' => $c['incentives2'],
  2664. // 'total' => $c['total'],
  2665. // 'claimed' => $c['claim'],
  2666. // ));
  2667. // }
  2668. // }
  2669. // usort($nested_data, function ($a, $b) {
  2670. // $dateA = $a['activated_dt'];
  2671. // $dateB = $b['activated_dt'];
  2672. // // ascending ordering, use `<=` for descending
  2673. // return $dateA <= $dateB;
  2674. // });
  2675. // return \DataTables::of($nested_data)->make(true);
  2676. // }
  2677. // }
  2678. // public function exportPDFClaim($company,$year,$month,$app) {
  2679. // $final = array();
  2680. // $id = Auth::guard('ms')->id();
  2681. // $user = Staff::with('StaffDetail')->find($id);
  2682. // $com = Company::where('_id',$company)->first();
  2683. // $dataR = array(); $dataB = array(); $combineData = array();
  2684. // if($year!='null' && $month!='null' && $app=='null'){
  2685. // $count_cyberjaya = array(); $count_jasin = array();
  2686. // $extra = 0; $basic_total = 0; $totals = 0;
  2687. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2688. // $dataDis = $this->returnDataR($company,'2019','12');
  2689. // $dataJan = $this->returnDataR($company,'2020','1');
  2690. // foreach ($dataDis as $key => $d) {
  2691. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2692. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2693. // $count_cyberjaya[] = $d;
  2694. // }
  2695. // if (strpos($d['address'], 'Jasin') !== false) {
  2696. // $count_jasin[] = $d;
  2697. // }
  2698. // }else {
  2699. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2700. // $combineData[] = $d;
  2701. // }
  2702. // }
  2703. // }
  2704. // foreach ($dataJan as $key => $d) {
  2705. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2706. // $count_cyberjaya[] = $d;
  2707. // }
  2708. // if (strpos($d['address'], 'Jasin') !== false) {
  2709. // $count_jasin[] = $d;
  2710. // }
  2711. // }
  2712. // // Store to combineData New Incentives Cyberjaya
  2713. // foreach ($count_cyberjaya as $key => $d) {
  2714. // if(count($count_cyberjaya) > 50){
  2715. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2716. // if($d['contract'] == '12'){
  2717. // array_push($combineData, array(
  2718. // 'index' => $d['index'],
  2719. // 'contract' => $d['contract'],
  2720. // 'wo' => $d['wo'],
  2721. // 'activation' => $d['activation'],
  2722. // 'name' => $d['name'],
  2723. // 'address' => $d['address'],
  2724. // 'package' => $d['package'],
  2725. // 'retail_price' => $d['retail_price'],
  2726. // 'incentives1' => $d['incentives1'],
  2727. // 'incentives2' => $d['incentives2'],
  2728. // 'total' => $d['total'],
  2729. // 'claim' => $d['claim'],
  2730. // ));
  2731. // }else {
  2732. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2733. // array_push($combineData, array(
  2734. // 'index' => $d['index'],
  2735. // 'contract' => $d['contract'],
  2736. // 'wo' => $d['wo'],
  2737. // 'activation' => $d['activation'],
  2738. // 'name' => $d['name'],
  2739. // 'address' => $d['address'],
  2740. // 'package' => $d['package'],
  2741. // 'retail_price' => $d['retail_price'],
  2742. // 'incentives1' => '230%',
  2743. // 'incentives2' => $d['incentives2'],
  2744. // 'total' => 'RM '.$total,
  2745. // 'claim' => $d['claim'],
  2746. // ));
  2747. // }
  2748. // }
  2749. // }else if(count($count_cyberjaya) < 50){
  2750. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2751. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.1, 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' => $d['incentives1'],
  2762. // 'incentives2' => $d['incentives2'],
  2763. // 'total' => $d['total'],
  2764. // 'claim' => $d['claim'],
  2765. // ));
  2766. // }
  2767. // }
  2768. // }
  2769. // // Store to combineData New Incentives Jasin
  2770. // foreach ($count_jasin as $key => $d) {
  2771. // if(count($count_jasin) > 10){
  2772. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2773. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2774. // array_push($combineData, array(
  2775. // 'index' => $d['index'],
  2776. // 'contract' => $d['contract'],
  2777. // 'wo' => $d['wo'],
  2778. // 'activation' => $d['activation'],
  2779. // 'name' => $d['name'],
  2780. // 'address' => $d['address'],
  2781. // 'package' => $d['package'],
  2782. // 'retail_price' => $d['retail_price'],
  2783. // 'incentives1' => '230%',
  2784. // 'incentives2' => $d['incentives2'],
  2785. // 'total' => 'RM '.$total,
  2786. // 'claim' => $d['claim'],
  2787. // ));
  2788. // }
  2789. // }else if(count($count_jasin) < 10){
  2790. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2791. // array_push($combineData, array(
  2792. // 'index' => $d['index'],
  2793. // 'contract' => $d['contract'],
  2794. // 'wo' => $d['wo'],
  2795. // 'activation' => $d['activation'],
  2796. // 'name' => $d['name'],
  2797. // 'address' => $d['address'],
  2798. // 'package' => $d['package'],
  2799. // 'retail_price' => $d['retail_price'],
  2800. // 'incentives1' => $d['incentives1'],
  2801. // 'incentives2' => $d['incentives2'],
  2802. // 'total' => $d['total'],
  2803. // 'claim' => $d['claim'],
  2804. // ));
  2805. // }
  2806. // }
  2807. // }
  2808. // }else {
  2809. // $dataR = $this->returnDataR($company,$year,$month);
  2810. // foreach($dataR as $r){
  2811. // $combineData[] = $r;
  2812. // }
  2813. // }
  2814. // $dataB = $this->returnDataB($company,$year,$month);
  2815. // foreach($dataB as $b){
  2816. // $combineData[] = $b;
  2817. // }
  2818. // $i = 0;
  2819. // $nested_data = array();
  2820. // if(!empty($combineData)){
  2821. // foreach ($combineData as $c){
  2822. // $i++;
  2823. // array_push($final, array(
  2824. // 'index' => $c['index'],
  2825. // 'contract' => $c['contract'],
  2826. // 'wo' => $c['wo'],
  2827. // 'activated_dt' => $c['activation'],
  2828. // 'name' => $c['name'],
  2829. // 'address' => $c['address'],
  2830. // 'package' => $c['package'],
  2831. // 'retail_price' => $c['retail_price'],
  2832. // 'incentives1' => $c['incentives1'],
  2833. // 'incentives2' => $c['incentives2'],
  2834. // 'total' => $c['total'],
  2835. // 'claimed' => $c['claim'],
  2836. // ));
  2837. // }
  2838. // }
  2839. // foreach($final as $f){
  2840. // $basic_total += floatval(str_replace('RM ', '', $f['total']));
  2841. // }
  2842. // // Calculate extra incentves
  2843. // if($month == '1' && $year == '2020'){
  2844. // if(count($count_cyberjaya) > 50){
  2845. // $balance = count($count_cyberjaya) - 50;
  2846. // $extra += $balance * 50;
  2847. // }
  2848. // if(count($count_jasin) > 10){
  2849. // $balance = count($count_jasin) - 10;
  2850. // $extra += $balance * 50;
  2851. // }
  2852. // }else {
  2853. // $extra = 0;
  2854. // }
  2855. // $totals = $basic_total + $extra;
  2856. // usort($final, function ($a, $b) {
  2857. // $dateA = $a['activated_dt'];
  2858. // $dateB = $b['activated_dt'];
  2859. // // ascending ordering, use `<=` for descending
  2860. // return $dateA <= $dateB;
  2861. // });
  2862. // $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals'));
  2863. // $pdf->setPaper('A4', 'landscape');
  2864. // $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$month.'-'.$year.'.pdf';
  2865. // return $pdf->download( $pdfName );
  2866. // }else if($year!='null' && $month!='null' && $app!='null'){
  2867. // $count_cyberjaya = array(); $count_jasin = array();
  2868. // $extra = 0; $basic_total = 0; $totals = 0;
  2869. // if($app == 'Residential'){
  2870. // if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '1')){
  2871. // $dataDis = $this->returnDataR($company,'2019','12');
  2872. // $dataJan = $this->returnDataR($company,'2020','1');
  2873. // foreach ($dataDis as $key => $d) {
  2874. // if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  2875. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2876. // $count_cyberjaya[] = $d;
  2877. // }
  2878. // if (strpos($d['address'], 'Jasin') !== false) {
  2879. // $count_jasin[] = $d;
  2880. // }
  2881. // }else {
  2882. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2883. // $combineData[] = $d;
  2884. // }
  2885. // }
  2886. // }
  2887. // foreach ($dataJan as $key => $d) {
  2888. // if (strpos($d['address'], 'Cyberjaya') !== false) {
  2889. // $count_cyberjaya[] = $d;
  2890. // }
  2891. // if (strpos($d['address'], 'Jasin') !== false) {
  2892. // $count_jasin[] = $d;
  2893. // }
  2894. // }
  2895. // // Store to combineData New Incentives Cyberjaya
  2896. // foreach ($count_cyberjaya as $key => $d) {
  2897. // if(count($count_cyberjaya) > 50){
  2898. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2899. // if($d['contract'] == '12'){
  2900. // array_push($combineData, array(
  2901. // 'index' => $d['index'],
  2902. // 'contract' => $d['contract'],
  2903. // 'wo' => $d['wo'],
  2904. // 'activation' => $d['activation'],
  2905. // 'name' => $d['name'],
  2906. // 'address' => $d['address'],
  2907. // 'package' => $d['package'],
  2908. // 'retail_price' => $d['retail_price'],
  2909. // 'incentives1' => $d['incentives1'],
  2910. // 'incentives2' => $d['incentives2'],
  2911. // 'total' => $d['total'],
  2912. // 'claim' => $d['claim'],
  2913. // ));
  2914. // }else {
  2915. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2916. // array_push($combineData, array(
  2917. // 'index' => $d['index'],
  2918. // 'contract' => $d['contract'],
  2919. // 'wo' => $d['wo'],
  2920. // 'activation' => $d['activation'],
  2921. // 'name' => $d['name'],
  2922. // 'address' => $d['address'],
  2923. // 'package' => $d['package'],
  2924. // 'retail_price' => $d['retail_price'],
  2925. // 'incentives1' => '230%',
  2926. // 'incentives2' => $d['incentives2'],
  2927. // 'total' => 'RM '.$total,
  2928. // 'claim' => $d['claim'],
  2929. // ));
  2930. // }
  2931. // }
  2932. // }else if(count($count_cyberjaya) < 50){
  2933. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2934. // array_push($combineData, array(
  2935. // 'index' => $d['index'],
  2936. // 'contract' => $d['contract'],
  2937. // 'wo' => $d['wo'],
  2938. // 'activation' => $d['activation'],
  2939. // 'name' => $d['name'],
  2940. // 'address' => $d['address'],
  2941. // 'package' => $d['package'],
  2942. // 'retail_price' => $d['retail_price'],
  2943. // 'incentives1' => $d['incentives1'],
  2944. // 'incentives2' => $d['incentives2'],
  2945. // 'total' => $d['total'],
  2946. // 'claim' => $d['claim'],
  2947. // ));
  2948. // }
  2949. // }
  2950. // }
  2951. // // Store to combineData New Incentives Jasin
  2952. // foreach ($count_jasin as $key => $d) {
  2953. // if(count($count_jasin) > 10){
  2954. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2955. // $total = number_format(floatval(str_replace("RM ", "" , $d['retail_price'])) * 2.3, 2);
  2956. // array_push($combineData, array(
  2957. // 'index' => $d['index'],
  2958. // 'contract' => $d['contract'],
  2959. // 'wo' => $d['wo'],
  2960. // 'activation' => $d['activation'],
  2961. // 'name' => $d['name'],
  2962. // 'address' => $d['address'],
  2963. // 'package' => $d['package'],
  2964. // 'retail_price' => $d['retail_price'],
  2965. // 'incentives1' => '230%',
  2966. // 'incentives2' => $d['incentives2'],
  2967. // 'total' => 'RM '.$total,
  2968. // 'claim' => $d['claim'],
  2969. // ));
  2970. // }
  2971. // }else if(count($count_jasin) < 10){
  2972. // if(date('n/Y', strtotime($d['activation'])) == $month.'/'.$year){
  2973. // array_push($combineData, array(
  2974. // 'index' => $d['index'],
  2975. // 'contract' => $d['contract'],
  2976. // 'wo' => $d['wo'],
  2977. // 'activation' => $d['activation'],
  2978. // 'name' => $d['name'],
  2979. // 'address' => $d['address'],
  2980. // 'package' => $d['package'],
  2981. // 'retail_price' => $d['retail_price'],
  2982. // 'incentives1' => $d['incentives1'],
  2983. // 'incentives2' => $d['incentives2'],
  2984. // 'total' => $d['total'],
  2985. // 'claim' => $d['claim'],
  2986. // ));
  2987. // }
  2988. // }
  2989. // }
  2990. // }else {
  2991. // $dataR = $this->returnDataR($company,$year,$month);
  2992. // foreach($dataR as $r){
  2993. // $combineData[] = $r;
  2994. // }
  2995. // }
  2996. // }else if($app == 'Business'){
  2997. // $dataB = $this->returnDataB($company,$year,$month);
  2998. // }
  2999. // foreach($dataB as $b){
  3000. // $combineData[] = $b;
  3001. // }
  3002. // $i = 0;
  3003. // $nested_data = array();
  3004. // if(!empty($combineData)){
  3005. // foreach ($combineData as $c){
  3006. // $i++;
  3007. // array_push($final, array(
  3008. // 'index' => $c['index'],
  3009. // 'contract' => $c['contract'],
  3010. // 'wo' => $c['wo'],
  3011. // 'activated_dt' => $c['activation'],
  3012. // 'name' => $c['name'],
  3013. // 'address' => $c['address'],
  3014. // 'package' => $c['package'],
  3015. // 'retail_price' => $c['retail_price'],
  3016. // 'incentives1' => $c['incentives1'],
  3017. // 'incentives2' => $c['incentives2'],
  3018. // 'total' => $c['total'],
  3019. // 'claimed' => $c['claim'],
  3020. // ));
  3021. // }
  3022. // }
  3023. // foreach($final as $f){
  3024. // $basic_total += floatval(str_replace('RM ', '', $f['total']));
  3025. // }
  3026. // //Calculate extra incentves
  3027. // if($month == '1' && $year == '2020'){
  3028. // if(count($count_cyberjaya) > 50){
  3029. // $balance = count($count_cyberjaya) - 50;
  3030. // $extra += $balance * 50;
  3031. // }
  3032. // if(count($count_jasin) > 10){
  3033. // $balance = count($count_jasin) - 10;
  3034. // $extra += $balance * 50;
  3035. // }
  3036. // }else {
  3037. // $extra = 0;
  3038. // }
  3039. // $totals = $basic_total + $extra;
  3040. // usort($final, function ($a, $b) {
  3041. // $dateA = $a['activated_dt'];
  3042. // $dateB = $b['activated_dt'];
  3043. // // ascending ordering, use `<=` for descending
  3044. // return $dateA <= $dateB;
  3045. // });
  3046. // $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals'));
  3047. // $pdf->setPaper('A4', 'landscape');
  3048. // $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$month.'-'.$year.'.pdf';
  3049. // return $pdf->download( $pdfName );
  3050. // }
  3051. // }
  3052. public function filterclaim($company,$year,$month,$app,$ptype)
  3053. {
  3054. $id = Auth::guard('ms')->id();
  3055. $user = Staff::with('StaffDetail')->find($id);
  3056. if($year!='null' && $month!='null' && $app=='null' && $ptype=='null'){
  3057. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3058. $q->with('Form');
  3059. }],'Staff')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3060. }else if($year=='null' && $month=='null' && $app!='null' && $ptype=='null'){
  3061. if($app == 'Residential'){
  3062. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3063. $q->with('Form');
  3064. }],'Staff')->where('formT', 'R')->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3065. }else if($app == 'Business'){
  3066. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3067. $q->with('Form');
  3068. }],'Staff')->where('formT', 'B')->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3069. }
  3070. }else if($year!='null' && $month!='null' && $app!='null' && $ptype=='null'){
  3071. if($app == 'Residential'){
  3072. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3073. $q->with('Form');
  3074. }],'Staff')->where('formT', 'R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3075. }else if($app == 'Business'){
  3076. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3077. $q->with('Form');
  3078. }],'Staff')->where('formT', 'B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3079. }
  3080. }else if($year!='null' && $month!='null' && $app=='null' && $ptype!='null'){
  3081. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3082. $q->with('Form');
  3083. }],'Staff')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3084. }else if($year=='null' && $month=='null' && $app=='null' && $ptype!='null'){
  3085. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3086. $q->with('Form');
  3087. }],'Staff')->where('projectT', $ptype)->where('dealer',$company)->orderBy('activated_dt','DESC')->get();
  3088. }else if($year!='null' && $month!='null' && $app!='null' && $ptype!='null'){
  3089. if($app == 'Residential'){
  3090. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3091. $q->with('Form');
  3092. }],'Staff')->where('formT','R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3093. } else if ($app == 'Business'){
  3094. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3095. $q->with('Form');
  3096. }],'Staff')->where('formT','B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3097. }
  3098. }else if($year=='null' && $month=='null' && $app!='null' && $ptype!='null'){
  3099. if($app == 'Residential'){
  3100. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3101. $q->with('Form');
  3102. }],'Staff')->where('formT','R')->where('dealer',$company)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3103. } else if ($app == 'Business'){
  3104. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3105. $q->with('Form');
  3106. }],'Staff')->where('formT','B')->where('dealer',$company)->where('projectT',$ptype)->orderBy('activated_dt','DESC')->get();
  3107. }
  3108. }
  3109. $i = 0;
  3110. $nested_data = array();
  3111. if(!empty($dataClaim)){
  3112. foreach ($dataClaim as $c){
  3113. $address = ''; $name = '';
  3114. if($c->Subscriber->Form->type_application == 'R'){
  3115. if($c->Subscriber->street != ''){
  3116. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3117. }else {
  3118. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3119. }
  3120. $name = $c->Subscriber->name;
  3121. }else if($c->Subscriber->Form->type_application == 'B'){
  3122. if($c->Subscriber->unit_no != ''){
  3123. $address = $c->Subscriber->unit_no. ', '.$c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3124. }else {
  3125. $address = $c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3126. }
  3127. $name = $c->Subscriber->company_name;
  3128. }
  3129. $i++;
  3130. array_push($nested_data, array(
  3131. 'index' => $c->formT,
  3132. 'contract' => $c->contract,
  3133. 'wo' => $c->wo,
  3134. 'activated_dt' => $c->activated_dt,
  3135. 'name' => $name,
  3136. 'address' => $address,
  3137. 'package' => $c->package,
  3138. 'retail_price' => 'RM '.$c->retail_price,
  3139. 'incentives1' => $c->incentives1,
  3140. 'incentives2' => $c->incentives2,
  3141. 'total' => 'RM '.$c->total_claim,
  3142. 'claimed' => $c->claim_dt,
  3143. ));
  3144. }
  3145. }
  3146. return \DataTables::of($nested_data)->make(true);
  3147. }
  3148. public function exportPDFClaim($company,$year,$month,$app,$ptype) {
  3149. $final = array();
  3150. $id = Auth::guard('ms')->id();
  3151. $user = Staff::with('StaffDetail')->find($id);
  3152. $com = Company::where('_id',$company)->first();
  3153. $i = 0;
  3154. $dataR = array(); $dataB = array(); $combineData = array();
  3155. $count_cyberjaya = array(); $count_jasin = array(); $count_ayerKeroh = array(); $count_alorGajah = array();
  3156. $extra = 0; $basic_total = 0; $totals = 0;
  3157. if($year!='null' && $month!='null' && $app!='null' && $ptype=='null'){
  3158. if($app == 'Residential'){
  3159. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3160. $q->with('Form');
  3161. }],'Staff')->where('formT', 'R')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3162. if(($year == '2019' || $year == '2020') && ($month == '12' || $month == '01')){
  3163. foreach ($dataClaim as $key => $d) {
  3164. if(date('d/m/Y', strtotime($d->activated_dt)) >= '12/12/2019' &&
  3165. date('d/m/Y', strtotime($d->activated_dt)) <= '31/01/2020'){
  3166. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3167. $count_cyberjaya[] = $d;
  3168. }
  3169. if (strpos($d['address'], 'Jasin') !== false) {
  3170. $count_jasin[] = $d;
  3171. }
  3172. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3173. $count_ayerKeroh[] = $d;
  3174. }
  3175. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3176. $count_alorGajah[] = $d;
  3177. }
  3178. }
  3179. }
  3180. }else if($year == '2020' && ($month == '04' || $month == '05' || $month == '06' || $month == '07')){
  3181. foreach ($dataClaim as $key => $d) {
  3182. if(date('d/m/Y', strtotime($d->activated_dt)) >= '27/04/2020' &&
  3183. date('d/m/Y', strtotime($d->activated_dt)) <= '31/07/2020'){
  3184. if (strpos($d['address'], 'Cyberjaya') !== false) {
  3185. $count_cyberjaya[] = $d;
  3186. }
  3187. if (strpos($d['address'], 'Jasin') !== false) {
  3188. $count_jasin[] = $d;
  3189. }
  3190. if (strpos($d['address'], 'Ayer Keroh') !== false) {
  3191. $count_ayerKeroh[] = $d;
  3192. }
  3193. if (strpos($d['address'], 'Alor Gajah') !== false) {
  3194. $count_alorGajah[] = $d;
  3195. }
  3196. }
  3197. }
  3198. }
  3199. }else if($app == 'Business'){
  3200. $dataClaim = DealerClaim::with(['Subscriber' => function($q) {
  3201. $q->with('Form');
  3202. }],'Staff')->where('formT', 'B')->where('dealer',$company)->where('activated_my',$month.'/'.$year)->orderBy('activated_dt','DESC')->get();
  3203. }
  3204. }
  3205. if(!empty($dataClaim)){
  3206. foreach ($dataClaim as $c){
  3207. $address = ''; $name = '';
  3208. if($c->Subscriber->Form->type_application == 'R'){
  3209. if($c->Subscriber->street != ''){
  3210. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3211. }else {
  3212. $address = $c->Subscriber->unit_no. ' , '.$c->Subscriber->building_name. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3213. }
  3214. $name = $c->Subscriber->name;
  3215. }else if($c->Subscriber->Form->type_application == 'B'){
  3216. if($c->Subscriber->unit_no != ''){
  3217. $address = $c->Subscriber->unit_no. ', '.$c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3218. }else {
  3219. $address = $c->Subscriber->company_name. ', '.$c->Subscriber->street. ' , '.$c->Subscriber->postcode. ' , '.$c->Subscriber->city. ' , '.$c->Subscriber->state;
  3220. }
  3221. $name = $c->Subscriber->company_name;
  3222. }
  3223. $i++;
  3224. array_push($final, array(
  3225. 'index' => $c->formT,
  3226. 'contract' => $c->contract,
  3227. 'wo' => $c->wo,
  3228. 'activated_dt' => $c->activated_dt,
  3229. 'name' => $name,
  3230. 'address' => $address,
  3231. 'package' => $c->package,
  3232. 'retail_price' => 'RM '.$c->retail_price,
  3233. 'incentives1' => $c->incentives1,
  3234. 'incentives2' => $c->incentives2,
  3235. 'total' => 'RM' .$c->total_claim,
  3236. 'claimed' => $c->claim_dt,
  3237. ));
  3238. }
  3239. foreach($dataClaim as $f){
  3240. $basic_total += $f->total_claim;
  3241. }
  3242. // Calculate extra incentves
  3243. if($month == '01' && $year == '2020'){
  3244. if(count($count_cyberjaya) > 50){
  3245. $balance = count($count_cyberjaya) - 50;
  3246. $extra += $balance * 50;
  3247. }
  3248. if(count($count_jasin) > 10){
  3249. $balance = count($count_jasin) - 10;
  3250. $extra += $balance * 50;
  3251. }
  3252. if(count($count_ayerKeroh) > 10){
  3253. $balance = count($count_ayerKeroh) - 10;
  3254. $extra += $balance * 50;
  3255. }
  3256. if(count($count_alorGajah) > 10){
  3257. $balance = count($count_alorGajah) - 10;
  3258. $extra += $balance * 50;
  3259. }
  3260. }else if($year == '2020' && ($month == '04' || $month == '05' || $month == '06' || $month == '07')){
  3261. if(count($count_cyberjaya) > 50){
  3262. $balance = count($count_cyberjaya) - 50;
  3263. $extra += $balance * 50;
  3264. }
  3265. if(count($count_jasin) > 20){
  3266. $balance = count($count_jasin) - 20;
  3267. $extra += $balance * 50;
  3268. }
  3269. if(count($count_ayerKeroh) > 20){
  3270. $balance = count($count_ayerKeroh) - 20;
  3271. $extra += $balance * 50;
  3272. }
  3273. if(count($count_alorGajah) > 20){
  3274. $balance = count($count_alorGajah) - 20;
  3275. $extra += $balance * 50;
  3276. }
  3277. }else {
  3278. $extra = 0;
  3279. }
  3280. $totals = $basic_total + $extra;
  3281. $pdf = PDF::loadView('pdf.agent-claim', compact('final', 'month', 'year','com','basic_total','extra','totals'));
  3282. $pdf->setPaper('A4', 'landscape');
  3283. $pdfName = preg_replace('/\s+/', '-', $com->name).'-'.$month.'-'.$year.'.pdf';
  3284. return $pdf->download( $pdfName );
  3285. }
  3286. }
  3287. public function manualDate(){
  3288. $final = array();
  3289. $com = Company::where('_id','5bb2bc66ee0dc2271c6fedf6')->first();
  3290. $dataR = array(); $dataB = array(); $combineData = array();
  3291. $count_cyberjaya = array(); $count_jasin = array(); $count_ayerKeroh = array(); $count_alorGajah = array();
  3292. $extra = 0; $basic_total = 0; $totals = 0;
  3293. $dataDis = $this->returnDataR('5bb2bc66ee0dc2271c6fedf6','2019','12');
  3294. foreach ($dataDis as $key => $d) {
  3295. if(date('d/m/Y', strtotime($d['activation'])) >= '12/12/2019'){
  3296. $combineData[] = $d;
  3297. }
  3298. }
  3299. $dataB = $this->returnDataB('5bb2bc66ee0dc2271c6fedf6','2019','12');
  3300. foreach($dataB as $b){
  3301. $combineData[] = $b;
  3302. }
  3303. $i = 0;
  3304. $nested_data = array();
  3305. if(!empty($combineData)){
  3306. foreach ($combineData as $c){
  3307. $i++;
  3308. array_push($final, array(
  3309. 'index' => $c['index'],
  3310. 'contract' => $c['contract'],
  3311. 'wo' => $c['wo'],
  3312. 'activated_dt' => $c['activation'],
  3313. 'name' => $c['name'],
  3314. 'address' => $c['address'],
  3315. 'package' => $c['package'],
  3316. 'retail_price' => $c['retail_price'],
  3317. 'incentives1' => $c['incentives1'],
  3318. 'incentives2' => $c['incentives2'],
  3319. 'total' => $c['total'],
  3320. 'claimed' => $c['claim'],
  3321. ));
  3322. }
  3323. }
  3324. usort($final, function ($a, $b) {
  3325. $dateA = $a['activated_dt'];
  3326. $dateB = $b['activated_dt'];
  3327. // ascending ordering, use `<=` for descending
  3328. return $dateA <= $dateB;
  3329. });
  3330. return json_encode($final);
  3331. }
  3332. }