FIX formate currency

This commit is contained in:
KhatamNugraha
2024-03-21 15:02:29 +07:00
parent 7a4c20490a
commit d2ed6f9df9
5 changed files with 59 additions and 21 deletions

View File

@ -81,8 +81,9 @@ class Account extends Model
// ->where('INACTIV_MARKER', NULL)
->where('AC.BATCH_DATE',$startDate)
->whereIn('AC.ACCOUNT_NUMBER', $arrAccount)
->whereIn(DB::raw("LEFT(CATEGORY, 3)"),['100','600','660','101'])
//->whereIn(DB::raw("LEFT(CATEGORY, 3)"),['100','600','660','101'])
->groupBy('CUSTOMER_NO','ACCOUNT_NUMBER','SHORT_TITLE','SHORT_NAME','COMPANY_NAME')
->orderBy('SHORT_NAME', 'ASC')
->limit(100);
return $data;
}
@ -213,4 +214,4 @@ class Account extends Model
}
}