position-unit.component.html 23.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<div class="header-title-type">
    <div class="flex justify-between">
     <div class="flex pr-2">
         <!-- Content ของ div แรก -->
            <div class="px-1">
                <button type="button" class="ti-btn ti-btn-soft-secondary h-20px m-0 shadow-md">
                    <i class="ri-add-line"></i>
                    นำเข้าข้อมูล
                </button>

                <a class="mx-2 justify-center  -mb-px  inline-flex items-center gap-2 text-sm font-medium text-center text-secondary border-secondary border-b-2 dark:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-gray-300 align-items-end"
                    href="javascript:void(0);" data-hs-overlay="#position-unit-component-modal-upload">
                    ดาวโหลดตัวอย่างไฟล์
                </a>
Natthaphat Pankiang committed
15
            </div>
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
     </div>
         <div class="flex justify-end">
             <div class="px-1">
                 <div class="relative shadow-md">
                     <input type="text" id="hs-leading-icon" name="hs-leading-icon"
                         class="ti-form-input ltr:pl-11 rtl:pr-11 focus:z-10 " placeholder="Search by No. or Name" style="height: 40px;"
                         [(ngModel)]="search" (ngModelChange)="searchChange()">
                     <div
                         class="absolute inset-y-0 ltr:left-0 rtl:right-0 flex items-center pointer-events-none z-20 ltr:pl-4 rtl:pr-4">
                         <i class="ri-search-line text-gray"></i>
                     </div>
                 </div>
             </div>
             <div class="px-1">
                 <button type="button" class="ti-btn ti-btn-soft-secondary h-20px m-0 shadow-md"
                     data-hs-overlay="#position-unit-component-modal-add">
                     <i class="ri-add-line"></i>
                     Add
                 </button>
             </div>
             <div class="px-1">
                 <button href="javascript:void(0);" class="ti-btn ti-btn-soft-danger h-20px m-0 shadow-md"
                 data-hs-overlay="#position-unit-component-alert-delete-modal">
                     <i class="ri-delete-bin-6-line"></i>
                     Delete
                 </button>
             </div>
             <div class="px-1">
                 <button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-20px m-0 shadow-md">
                     <i class="ti ti-book fs-l"></i>
                     Help
                 </button>
             </div>
         </div>
     </div>
 </div>
Natthaphat Pankiang committed
52

53
<div class="page px-rem">
54 55 56
        <div class="overflow-auto table-bordered rounded-t-md">
            <div class="overflow-auto shadow-md rounded-t-md">
                <table class="ti-custom-table ti-custom-table-head ti-custom-table-hover">
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
                    <thead>
                        <tr>
                            <ng-container
                                *ngFor="let item of ['รหัสกลุ่มพนักงาน','รายละเอียด(ไทย) *','รายละเอียด(อังกฤษ)','Action']; let f = first; let l = last; let i = index">
                                <th scope="col" class="relative px-10px py-10px bg-soft-secondary text-primary"
                                    style="text-align: center;" [class.!text-center]="f||l">
                                    <span class="text-sm">{{ item }}</span>
                                    <div class="absolute top-1/2 transform -translate-y-1/2 right-0" *ngIf="!l&&!f&&i!==2">
                                        <svg class="head-table-icon" xmlns="http://www.w3.org/2000/svg" width="50"
                                            height="16" fill="currentColor" viewBox="0 0 16 16">
                                            <path
                                                d="M9.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0zm0-5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z">
                                            </path>
                                        </svg>
                                    </div>
                                </th>
                            </ng-container>
                        </tr>
                    </thead>
                    <tbody *ngIf="!positionListFilter().length">
                        <tr>
                            <td class="text-center" colspan="100%">
                                ไม่พบข้อมูล
                            </td>
                        </tr>
                    </tbody>
                    <tbody *ngIf="positionListFilter().length">
                        <tr
                            *ngFor="let item of positionListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index">
86 87 88 89
                            <td class="flex justify-center items-center" style="height: 40px;">
                                <input type="checkbox"
                                       style="margin-right: 20px; transform: scale(0.7);">
                                <span style="display: inline-block; min-width: 60px;">{{ item.positionId }}</span>
90
                            </td>
91
                            
92 93 94 95 96 97 98 99 100 101 102 103
                            <td class="text-center">{{item.tdesc}}</td>
                            <td class="text-center">{{item.edesc}}</td>
                            <td class="flex justify-center">
                                <i class="ti ti-edit cursor-pointer i-gray fs-l px-1" (click)="selectPosition(item)"
                                    data-hs-overlay="#position-unit-component-modal-edit"></i>
                                <i class="ti ti-trash cursor-pointer i-gray fs-l px-1" (click)="deletePosition(item)"
                                    data-hs-overlay="#position-unit-component-alert-delete-modal"></i>
                            </td>
                        </tr>
                    </tbody>
                </table>
            </div>
Natthaphat Pankiang committed
104
        </div>
105 106 107 108 109 110 111 112
        <nav class="pagination-style-3 overflow-auto my-5" *ngIf="page.length">
            <ul class="ti-pagination">
                <li>
                    <a aria-label="anchor" class="page-link" href="javascript:void(0);"
                        (click)="currentPage = (currentPage-1 || 1)">
                        <i class="ri-arrow-left-s-line align-middle rtl:rotate-180"></i>
                    </a>
                </li>
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
                <li *ngFor="let item of page;let f = first;let l = last">
                    <ng-container *ngIf="item==3&&currentPage!=1&&currentPage!=2&&currentPage!=3">
                        <a aria-label="anchor" class="page-link" href="javascript:void(0);"><i class="ri-more-line"></i>
                        </a>
                    </ng-container>
                    <ng-container *ngIf="(f||l)||(item==currentPage-1||item==currentPage||item==currentPage+1)">
                        <a class="page-link" href="javascript:void(0);" [class.active]="item==currentPage"
                            (click)="currentPage=item">{{item}}
                        </a>
                    </ng-container>
                    <ng-container
                        *ngIf="item==page.length-2&&currentPage!=page.length&&currentPage!=page.length-1&&currentPage!=page.length-2">
                        <a aria-label="anchor" class="page-link" href="javascript:void(0);"><i class="ri-more-line"></i>
                        </a>
                    </ng-container>
128 129 130 131 132 133 134 135 136
                </li>
                <li>
                    <a aria-label="anchor" class="page-link" href="javascript:void(0);"
                        (click)="currentPage = (currentPage > page.length-1 ? currentPage: currentPage+1 )">
                        <i class="ri-arrow-right-s-line align-middle rtl:rotate-180"></i>
                    </a>
                </li>
            </ul>
        </nav>
137 138 139
</div>


140
<div id="position-unit-component-modal-add" class="hs-overlay hidden ti-modal">
141 142 143 144 145 146 147
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)]">
        <div class="max-h-full overflow-hidden ti-modal-content">
            <div class="ti-modal-header">
                <h3 class="text-xxl font-bold text-primary">
                    เพิ่มข้อมูลตำเเหน่ง
                </h3>
                <div class="flex justify-end">
148 149 150 151 152 153 154 155 156 157
                    <button type="button" class="hs-dropdown-toggle ti-modal-clode-btn text-danger"
                        data-hs-overlay="#position-unit-component-modal-add">
                        <span class="sr-only">Close</span>
                        <i class="ti ti-circle-x fs-xxl"></i>
                    </button>
                </div>
            </div>
            <div class="ti-modal-center">
                <div class="flex justify-end" style="padding-right: 1rem;">
                    <div class="px-1">
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
                        <button type="button" class="ti-btn ti-btn-soft-indigo h-45px m-0 shadow-md">
                            <svg class="svg-indigo" width="16" height="16" viewBox="0 0 64.00 64.00"
                                xmlns="http://www.w3.org/2000/svg" fill="none" stroke="#595BEA" stroke-width="3.84"
                                transform="rotate(45)matrix(-1, 0, 0, 1, 0, 0)">
                                <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
                                <g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
                                <g id="SVGRepo_iconCarrier">
                                    <path d="M15 49A24 24 0 0 1 32 8"></path>
                                    <path d="M49 15a24 24 0 0 1-17 41"></path>
                                    <polyline points="15.03 40 15.03 48.97 8 48.97"></polyline>
                                    <polyline points="48.97 24 48.97 15.03 56 15.03"></polyline>
                                </g>
                            </svg>
                            Clear
                        </button>
                    </div>
174
                    <div class="px-1">
175 176 177 178 179 180 181
                        <button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-45px m-0 shadow-md">
                            <i class="ti ti-book fs-l"></i>
                            Help
                        </button>
                    </div>
                </div>
            </div>
182
            <div class="ti-modal-body ">
183 184 185
                <label for="input-label" class="ti-form-label mt-2rem">รหัสตำเเหน่ง *</label>
                <input type="text" id="input-label" class="ti-form-input w-1/2" placeholder="">
                <label for="detail_th" class="ti-form-label mt-2rem">รายละเอียดฝ่าย (ไทย)</label>
186
                <input type="text" id="detail_th" class="ti-form-input h-16" placeholder="">
187
                <label for="detail_eng" class="ti-form-label mt-2rem">รายละเอียดฝ่าย (อังกฤษ)</label>
188
                <input type="text" id="detail_eng" class="ti-form-input h-16" placeholder="">
189 190 191
                <div class="flex justify-end mt-2rem mb-1rem space-x-2">
                    <button type="button"
                        class="hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
192
                        data-hs-overlay="#position-unit-component-modal-add">
193 194
                        ย้อนกลับ
                    </button>
195 196
                    <a class="ti-btn ti-btn-success" href="javascript:void(0);"
                        data-hs-overlay="#position-unit-component-alert-modal">
197 198 199 200 201 202 203 204
                        บันทึกข้อมูล
                    </a>
                </div>
            </div>
        </div>
    </div>
</div>

205
<div id="position-unit-component-modal-edit" class="hs-overlay hidden ti-modal">
206 207 208 209 210 211 212
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)]">
        <div class="max-h-full overflow-hidden ti-modal-content">
            <div class="ti-modal-header">
                <h3 class="text-xxl font-bold text-primary">
                    แก้ไขข้อมูลตำเเหน่ง
                </h3>
                <div class="flex justify-end">
213 214 215 216 217 218 219 220 221 222
                    <button type="button" class="hs-dropdown-toggle ti-modal-clode-btn text-danger"
                        data-hs-overlay="#position-unit-component-modal-edit">
                        <span class="sr-only">Close</span>
                        <i class="ti ti-circle-x fs-xxl"></i>
                    </button>
                </div>
            </div>
            <div class="ti-modal-center">
                <div class="flex justify-end" style="padding-right: 1rem;">
                    <div class="px-1">
223 224 225 226 227 228 229
                        <button type="button" class="ti-btn ti-btn-soft-indigo h-45px m-0 shadow-md">
                            <svg class="svg-indigo" width="16" height="16" viewBox="0 0 64.00 64.00"
                                xmlns="http://www.w3.org/2000/svg" fill="none" stroke="#595BEA" stroke-width="3.84"
                                transform="rotate(45)matrix(-1, 0, 0, 1, 0, 0)">
                                <g id="SVGRepo_bgCarrier" stroke-width="0"></g>
                                <g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
                                <g id="SVGRepo_iconCarrier">
230
                                    <path d="M15 49A24 24 0 0 1 32 8"></path>
231 232 233 234 235 236 237 238
                                    <path d="M49 15a24 24 0 0 1-17 41"></path>
                                    <polyline points="15.03 40 15.03 48.97 8 48.97"></polyline>
                                    <polyline points="48.97 24 48.97 15.03 56 15.03"></polyline>
                                </g>
                            </svg>
                            Clear
                        </button>
                    </div>
239
                    <div class="px-1">
240 241 242 243 244 245 246
                        <button href="javascript:void(0);" class="ti-btn ti-btn-soft-warning h-45px m-0 shadow-md">
                            <i class="ti ti-book fs-l"></i>
                            Help
                        </button>
                    </div>
                </div>
            </div>
247
            <div class="ti-modal-body ">
248
                <label for="input-label" class="ti-form-label mt-2rem">รหัสตำเเหน่ง</label>
249 250
                <input type="text" id="input-label" class="ti-form-input w-1/2 bg-input-readonly" readonly
                    [(ngModel)]="position.positionId">
251
                <label for="detail_th" class="ti-form-label mt-2rem">รายละเอียดฝ่าย (ไทย)</label>
252
                <input type="text" id="detail_th" class="ti-form-input h-16" [(ngModel)]="position.tdesc">
253
                <label for="detail_eng" class="ti-form-label mt-2rem">รายละเอียดฝ่าย (อังกฤษ)</label>
254
                <input type="text" id="detail_eng" class="ti-form-input h-16" [(ngModel)]="position.edesc">
255 256 257
                <div class="flex justify-end mt-2rem mb-1rem">
                    <button type="button"
                        class="hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
258
                        data-hs-overlay="#position-unit-component-modal-edit">
259 260
                        ย้อนกลับ
                    </button>
261
                    <a class="ti-btn ti-btn-success" href="javascript:void(0);"
262
                        data-hs-overlay="#position-unit-component-alert-edit-modal">
263 264 265 266 267 268
                        บันทึกข้อมูล
                    </a>
                </div>
            </div>
        </div>
    </div>
269 270 271
</div>
<div id="position-unit-component-modal-upload" class="hs-overlay hidden ti-modal">
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)]">
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
        <div class="max-h-full overflow-hidden ti-modal-content-upload">
            <div class="modal-headerupload bg-primary">
                <h5 class="text-xxl font-bold text-white">
                    นำเข้าข้อมูลบริษัท
                </h5>
            </div>
            <h1 class="mt-2" style="text-align: center;">ไฟล์</h1>
            <div class="mt-2" style="margin-left: 10px;">
                <div class="flex rounded-md">
                    <input type="text" id="hs-trailing-button-add-on-with-icon"
                        name="hs-trailing-button-add-on-with-icon"
                        class="ti-form-input rounded-none ltr:rounded-l-md rtl:rounded-r-md focus:z-10">
                    <button aria-label="button" type="button"
                        class="inline-flex flex-shrink-0 justify-center items-center h-[2.875rem] w-[2.875rem] ltr:rounded-r-md rtl:rounded-l-md border border-transparent font-semibold bg-primary text-white hover:bg-primary focus:z-10 focus:outline-none focus:ring-0 focus:ring-primary transition-all text-sm">
                        <i class="ti ti-upload"></i>
                    </button>
                </div>
                <div class="flex justify-center mt-2rem mb-1rem space-x-4">
                    <a class="ti-btn ti-btn-primary" href="javascript:void(0);">
                        อัปโหลด
                    </a>
                </div>
            </div>
295 296
        </div>
    </div>
297
</div>
298
<div id="position-unit-component-alert-modal" class="hs-overlay hidden ti-modal">
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)] flex items-center">
        <div class="max-h-full overflow-hidden ti-modal-content w-full">
            <div class="ti-modal-header">
                <h3 class="text-xxl font-bold text-primary">
                    แจ้งเตือน
                </h3>
                <div class="flex justify-end">
                    <button type="button" class="hs-dropdown-toggle ti-modal-clode-btn text-danger"
                        data-hs-overlay="#position-unit-component-alert-modal">
                        <span class="sr-only">Close</span>
                        <i class="ti ti-circle-x fs-xxl"></i>
                    </button>
                </div>
            </div>
            <div class="ti-modal-body ">
                <p class="mt-1 text-gray-800 dark:text-white/70">
                    ยืนยันการบันทึกข้อมูลหรือไม่
                </p>

                <div class="flex justify-end mt-2rem mb-1rem">
                    <button type="button"
                        class="hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
                        data-hs-overlay="#position-unit-component-alert-modal">
                        ย้อนกลับ
                    </button>
                    <a class="ti-btn ti-btn-success" href="javascript:void(0);"
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
                        data-hs-overlay="#position-unit-component-alert-modal" (click)="addPosition();showSuccess()">
                        บันทึกข้อมูล
                    </a>
                </div>
            </div>
        </div>
    </div>
</div>

<div id="position-unit-component-alert-edit-modal" class="hs-overlay hidden ti-modal">
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)] flex items-center">
        <div class="max-h-full overflow-hidden ti-modal-content w-full">
            <div class="ti-modal-header">
                <h3 class="text-xxl font-bold text-primary">
                    แจ้งเตือน
                </h3>
                <div class="flex justify-end">
                    <button type="button" class="hs-dropdown-toggle ti-modal-clode-btn text-danger"
                        data-hs-overlay="#position-unit-component-alert-modal">
                        <span class="sr-only">Close</span>
                        <i class="ti ti-circle-x fs-xxl"></i>
                    </button>
                </div>
            </div>
            <div class="ti-modal-body ">
                <p class="mt-1 text-gray-800 dark:text-white/70">
                    ยืนยันการเเก้ไขข้อมูลหรือไม่
                </p>

                <div class="flex justify-end mt-2rem mb-1rem">
                    <button type="button"
                        class="hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
                        data-hs-overlay="#position-unit-component-alert-modal">
                        ย้อนกลับ
                    </button>
                    <a class="ti-btn ti-btn-success" href="javascript:void(0);"
361 362
                        data-hs-overlay="#position-unit-component-alert-edit-modal"
                        (click)="addPosition();showSuccesssEdit()">
363 364 365 366 367 368
                        บันทึกข้อมูล
                    </a>
                </div>
            </div>
        </div>
    </div>
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
</div>


<div id="position-unit-component-alert-delete-modal" class="hs-overlay hidden ti-modal">
    <div class="hs-overlay-open:mt-7 ti-modal-box mt-0 ease-out h-[calc(100%-3.5rem)] flex items-center">
        <div class="max-h-full overflow-hidden ti-modal-content w-full">
            <div class="ti-modal-header">
                <h3 class="text-xxl font-bold text-primary">
                    แจ้งเตือน
                </h3>
                <div class="flex justify-end">
                    <button type="button" class="hs-dropdown-toggle ti-modal-clode-btn text-danger"
                        data-hs-overlay="#position-unit-component-alert-delete-modal">
                        <span class="sr-only">Close</span>
                        <i class="ti ti-circle-x fs-xxl"></i>
                    </button>
                </div>
            </div>
            <div class="ti-modal-body ">
                <p class="mt-1 text-gray-800 dark:text-white/70">
                    ยืนยันการลบข้อมูลหรือไม่
                </p>

                <div class="flex justify-end mt-2rem mb-1rem">
                    <button type="button"
                        class="hs-dropdown-toggle ti-btn ti-border font-medium bg-white text-gray-700 shadow-sm align-middle hover:bg-gray-50 focus:ring-offset-white focus:ring-primary dark:bg-bgdark dark:hover:bg-black/20 dark:border-white/10 dark:text-white/70 dark:hover:text-white dark:focus:ring-offset-white/10"
                        data-hs-overlay="#position-unit-component-alert-modal">
                        ย้อนกลับ
                    </button>
                    <a class="ti-btn ti-btn-success" href="javascript:void(0);"
399 400
                        data-hs-overlay="#position-unit-component-alert-delete-modal"
                        (click)="addPosition();showSuccessDelete()">
401 402 403 404 405 406
                        ลบข้อมูล
                    </a>
                </div>
            </div>
        </div>
    </div>
407
</div>