mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-22 14:04:06 +00:00
33d65be53b
1. add the word "退税“ behind the order number as requested by YD 2. the word "供应商” should change to “联络人” 3, Tax Rebate Refund only applicable on GZ warehouse. YW and FS warehouse cannot do Tax Rebate. Can you block or disallow the tax rebate section for this both warehouse ? 4. It will be good if a delete button can be implemented in the Created Tax Rebate QR code, so customer can remove them if they created wrongly
21 lines
543 B
PHP
21 lines
543 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Orders;
|
|
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
use App\Classes\Modules\Orders\ControllersLogic\DeleteSupplierTaxRebateLogic;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
class DeleteSupplierTaxRebateController
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param DeleteSupplierTaxRebateLogic $logic
|
|
* @return JsonResponse
|
|
*/
|
|
public function delete(Request $request, DeleteSupplierTaxRebateLogic $logic): JsonResponse
|
|
{
|
|
return $logic->execute($request);
|
|
}
|
|
} |