Compare commits

...

2 Commits

Author SHA1 Message Date
Mekan1206
97b6561ad3 WIP 2026-05-06 13:35:10 +05:00
Mekan1206
c9a0021bc3 WIP 2026-05-06 12:28:19 +05:00
5 changed files with 1146 additions and 1117 deletions

View File

@@ -128,7 +128,7 @@ class VisaMasterPaymentOrderFieldsForDetail
Text::make(__('Töleg ugradyjynyň goýum hasaby'), function () use ($resource) {
return sprintf(
'<strong>%s</strong>',
number_format($resource->sender_deposit_account, 0, '', '')
$resource->sender_deposit_account && is_numeric($resource->sender_deposit_account) ? number_format($resource->sender_deposit_account, 0, '', '') : '0'
);
})->asHtml(),

View File

@@ -382,13 +382,12 @@ class NovaVisaMasterPaymentOrder extends Resource
$order = $this->resource;
if (in_array($order->status, [
OrderRepo::PENDING,
OrderRepo::CANCELLED,
OrderRepo::COMPLETED,
])) {
return false;
return true;
}
return true;
return false;
}),
];
}

View File

@@ -99,10 +99,6 @@
"type": "vcs",
"url": "https://github.com/anditsung/nova-locale-switcher"
},
"1": {
"type": "vcs",
"url": "https://github.com/nurmuhammet-ali/nova-tabs"
},
"2": {
"type": "path",
"url": "./nova-components/NovaCustomHtml"

2250
composer.lock generated

File diff suppressed because it is too large Load Diff

BIN
vendor.zip Normal file

Binary file not shown.