@seniorsistemas/yms-integration 1.14.1 → 1.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13065,6 +13065,36 @@
13065
13065
  return ErpSeniorModule;
13066
13066
  }());
13067
13067
 
13068
+ var DockService = /** @class */ (function (_super) {
13069
+ __extends(DockService, _super);
13070
+ function DockService(http, messageService) {
13071
+ var _this = _super.call(this, messageService) || this;
13072
+ _this.http = http;
13073
+ _this.messageService = messageService;
13074
+ _this.url_dock = "yms/dock/";
13075
+ return _this;
13076
+ }
13077
+ DockService.prototype.fallbackCall = function (plantId, vaga, plate) {
13078
+ return this.http.post(this.url_dock + "actions/setVagaInProgress", { plantId: plantId, vaga: vaga, plate: plate }).pipe(this.defaultCatch());
13079
+ };
13080
+ DockService = __decorate([
13081
+ core.Injectable(),
13082
+ __metadata("design:paramtypes", [http.HttpClient, api.MessageService])
13083
+ ], DockService);
13084
+ return DockService;
13085
+ }(Service));
13086
+
13087
+ var DockModule = /** @class */ (function () {
13088
+ function DockModule() {
13089
+ }
13090
+ DockModule = __decorate([
13091
+ core.NgModule({
13092
+ providers: [DockService]
13093
+ })
13094
+ ], DockModule);
13095
+ return DockModule;
13096
+ }());
13097
+
13068
13098
  exports.AgendaModule = AgendaModule;
13069
13099
  exports.AgendaService = AgendaService;
13070
13100
  exports.BalancaModule = BalancaModule;
@@ -13082,6 +13112,8 @@
13082
13112
  exports.ControladorCancelaDescritor = ControladorCancelaDescritor;
13083
13113
  exports.ControladorCancelasService = ControladorCancelasService;
13084
13114
  exports.CoreModule = CoreModule;
13115
+ exports.DockModule = DockModule;
13116
+ exports.DockService = DockService;
13085
13117
  exports.ERP_ENVIRONMENT = ERP_ENVIRONMENT;
13086
13118
  exports.ERP_SENIOR_HEADER = ERP_SENIOR_HEADER;
13087
13119
  exports.EmpresaModule = EmpresaModule;