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
| <table class="table table-striped"> | |
| <tr> | |
| <td>Produtos</td> | |
| <td>Marca</td> | |
| <td>Modelo</td> | |
| <td>Quantidade</td> | |
| <td>Obs</td> | |
| <td></td> | |
| </tr> |
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
| // Recupera informações do usuário logado. | |
| &GamUserGuid = GamUser.GetId() | |
| If &GamUserGuid.IsEmpty() | |
| MSg('Erro na recueração do Usuário Logado.') | |
| Else | |
| // Lê usuário pelo GamGuid | |
| For Each | |
| where UserIdentification = &GamUserGuid | |
| &UserCod = UserCod |
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
| Erro de Servidor no Aplicativo '/Amatriz.NetEnvironment'. | |
| Foi feita uma tentativa de se carregar um programa com um formato incorreto. (Exceção de HRESULT: 0x8007000B) | |
| Descrição: Ocorreu uma exceção sem tratamento durante a execução da atual solicitação da Web. Examine o rastreamento de pilha para obter mais informações sobre o erro e onde foi originado no código. | |
| Detalhes da Exceção: System.BadImageFormatException: Foi feita uma tentativa de se carregar um programa com um formato incorreto. (Exceção de HRESULT: 0x8007000B) | |
| Erro de Origem: |
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 | |
| use Illuminate\Database\Migrations\Migration; | |
| use Illuminate\Database\Schema\Blueprint; | |
| class CreateRepresentantesTable extends Migration | |
| { | |
| /** | |
| * Run the migrations. | |
| * |
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\Http\Controllers; | |
| use App\Http\Requests; | |
| use App\Http\Controllers\Controller; | |
| use Store; | |
| use App\categorium; | |
| use Illuminate\Http\Request; | |
| use Carbon\Carbon; |