E-Invoice - Sin Yee request for einvoice postcode need to able to input starting with 0, e.g. 02600

This commit is contained in:
Dillon Ngo
2025-06-29 17:12:20 +08:00
parent 13ff1f1d95
commit 0b9fe74128
5 changed files with 7 additions and 7 deletions
@@ -20,7 +20,7 @@ class AddressEInvoiceResource extends JsonResource
'street_two' => $this->street_two,
'district' => $this->district,
'state' => $this->state,
'post_code' => (int) $this->postcode,
'post_code' => (string) $this->postcode,
'country' => $this->country,
'billing' => (int) $this->billing
];