@seniorsistemas/yms-integration 1.39.0-f91ecbab-02b2-4fa0-803c-5027c0257424 → 1.40.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.
- package/bundles/seniorsistemas-yms-integration.umd.js +2 -1
- package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +3 -2
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +3 -2
- package/fesm2015/seniorsistemas-yms-integration.js +2 -1
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +2 -1
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
|
@@ -3830,10 +3830,11 @@ var RegisterDocumentComponent = /** @class */ (function () {
|
|
|
3830
3830
|
});
|
|
3831
3831
|
};
|
|
3832
3832
|
RegisterDocumentComponent.prototype.save = function () {
|
|
3833
|
-
|
|
3833
|
+
var document = Document.fromDto(this.formGroup.getRawValue());
|
|
3834
3834
|
if (!this.documentGridComponent.validateDocument(document)) {
|
|
3835
3835
|
return;
|
|
3836
3836
|
}
|
|
3837
|
+
this.document.emit(document);
|
|
3837
3838
|
this.formGroup.reset();
|
|
3838
3839
|
};
|
|
3839
3840
|
RegisterDocumentComponent.prototype.isWmsWis = function () {
|