This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Node Js | |
| curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash - | |
| sudo yum install nodejs | |
| node --version | |
| npm --version | |
| # Redis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Services\IN; | |
| use Illuminate\Http\Request; | |
| interface INTransHdrService | |
| { | |
| public function findById($id); | |
| public function findOrderCode($code); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Repositories\IN; | |
| use App\Models\AP\PITransDtl; | |
| use App\Models\AP\PITransHdr; | |
| use App\Models\Inventory\INTransHdr; | |
| use App\Models\Log\CollectedLog; | |
| use App\Models\Setting; | |
| use App\Models\SettingPurchasing; | |
| use App\Models\SettingSales; |