4 Commits

3 changed files with 27 additions and 5 deletions

View File

@@ -14,6 +14,17 @@
- Saat bug UI/network, cek dulu alur `mounted`, `watch`, `computed`, dan `store dispatch` sebelum menambah mekanisme baru. - Saat bug UI/network, cek dulu alur `mounted`, `watch`, `computed`, dan `store dispatch` sebelum menambah mekanisme baru.
- Jika diminta meniru modul referensi, ikuti pola modul referensi secara ketat. - Jika diminta meniru modul referensi, ikuti pola modul referensi secara ketat.
## Pull Request — Wajib Sebelum Membuat PR
Sebelum membuat PR, **selalu jalankan dua perintah ini terlebih dahulu:**
```bash
git log origin/master..origin/staging --oneline # lihat semua commit yang belum masuk master
git diff origin/master...origin/staging --stat # lihat semua file yang berubah
```
Deskripsi PR harus mencakup **semua commit** yang ada di staging tapi belum di master — bukan hanya commit terakhir. Jangan sampai ada commit/file yang terlewat.
## Pull Request Format ## Pull Request Format
Setiap PR wajib menggunakan struktur berikut: Setiap PR wajib menggunakan struktur berikut:

View File

@@ -1,3 +1,14 @@
# Pull Request — Wajib Sebelum Membuat PR
Sebelum membuat PR, **selalu jalankan dua perintah ini terlebih dahulu:**
```bash
git log origin/master..origin/staging --oneline # lihat semua commit yang belum masuk master
git diff origin/master...origin/staging --stat # lihat semua file yang berubah
```
Deskripsi PR harus mencakup **semua commit** yang ada di staging tapi belum di master — bukan hanya commit terakhir. Jangan sampai ada commit/file yang terlewat.
# Pull Request Format # Pull Request Format
Setiap PR wajib menggunakan struktur berikut: Setiap PR wajib menggunakan struktur berikut:

View File

@@ -177,10 +177,10 @@
padding-top: 2px; padding-top: 2px;
padding-bottom: 2px; padding-bottom: 2px;
"> ">
<span class="font-weight-bold mr-2">{{ <span class="font-weight-bold mr-2">{{
note.T_TestSasCode note.T_TestSasCode || note.code
}}</span> }}</span>
{{ note.T_TestName }} {{ note.T_TestName || note.name }}
</td> </td>
<td width="20%" class="text-md-right pl-3 pr-3" style=" <td width="20%" class="text-md-right pl-3 pr-3" style="
border: 1px solid black; border: 1px solid black;
@@ -188,7 +188,7 @@
padding-top: 2px; padding-top: 2px;
padding-bottom: 2px; padding-bottom: 2px;
"> ">
{{ convertMoney(note.T_PacketDetailPrice) }} {{ convertMoney(note.T_PacketDetailPrice || note.price) }}
</td> </td>
</tr> </tr>
<tr class="mini-input" v-if="detailPacket.length === 0"> <tr class="mini-input" v-if="detailPacket.length === 0">