@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
|
@@ -3889,10 +3889,11 @@
|
|
|
3889
3889
|
});
|
|
3890
3890
|
};
|
|
3891
3891
|
RegisterDocumentComponent.prototype.save = function () {
|
|
3892
|
-
|
|
3892
|
+
var document = Document.fromDto(this.formGroup.getRawValue());
|
|
3893
3893
|
if (!this.documentGridComponent.validateDocument(document)) {
|
|
3894
3894
|
return;
|
|
3895
3895
|
}
|
|
3896
|
+
this.document.emit(document);
|
|
3896
3897
|
this.formGroup.reset();
|
|
3897
3898
|
};
|
|
3898
3899
|
RegisterDocumentComponent.prototype.isWmsWis = function () {
|