grapp-common-se 0.6.125 → 0.6.127
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/dist/orders/order.d.ts +21 -10
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -209,16 +209,27 @@ export interface orderTraceabilityStatus {
|
|
|
209
209
|
destinatary?: User;
|
|
210
210
|
}
|
|
211
211
|
export interface ContractTech {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
212
|
+
_id?: string;
|
|
213
|
+
epsId?: string;
|
|
214
|
+
epsCode?: string;
|
|
215
|
+
typeContract?: string;
|
|
216
|
+
contractId?: string;
|
|
217
|
+
technologyCode?: string;
|
|
218
|
+
techName?: string;
|
|
219
|
+
techCodeDescription?: string;
|
|
220
|
+
buyCost?: number;
|
|
221
|
+
sellPrice?: number;
|
|
222
|
+
frecuency?: number;
|
|
223
|
+
frecuencyAlert?: number;
|
|
224
|
+
monthlyFrecuency?: number;
|
|
225
|
+
weeklyFrecuency?: number;
|
|
226
|
+
createdAt?: number;
|
|
227
|
+
createdBy?: string;
|
|
228
|
+
lastModifiedAt?: number;
|
|
229
|
+
lastModifiedBy?: string;
|
|
230
|
+
state?: boolean;
|
|
231
|
+
ownCodeCups?: string;
|
|
232
|
+
planContractTech?: string;
|
|
222
233
|
}
|
|
223
234
|
export interface SpecialitiesDoctorComplete {
|
|
224
235
|
habilitado: boolean;
|