grapp-common-se 0.6.152 → 0.6.153
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
|
@@ -217,16 +217,27 @@ export interface orderTraceabilityStatus {
|
|
|
217
217
|
destinatary?: User;
|
|
218
218
|
}
|
|
219
219
|
export interface ContractTech {
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
220
|
+
_id?: string;
|
|
221
|
+
epsId?: string;
|
|
222
|
+
epsCode?: string;
|
|
223
|
+
typeContract?: string;
|
|
224
|
+
contractId?: string;
|
|
225
|
+
technologyCode?: string;
|
|
226
|
+
techName?: string;
|
|
227
|
+
techCodeDescription?: string;
|
|
228
|
+
buyCost?: number;
|
|
229
|
+
sellPrice?: number;
|
|
230
|
+
frecuency?: number;
|
|
231
|
+
frecuencyAlert?: number;
|
|
232
|
+
monthlyFrecuency?: number;
|
|
233
|
+
weeklyFrecuency?: number;
|
|
234
|
+
createdAt?: number;
|
|
235
|
+
createdBy?: string;
|
|
236
|
+
lastModifiedAt?: number;
|
|
237
|
+
lastModifiedBy?: string;
|
|
238
|
+
state?: boolean;
|
|
239
|
+
ownCodeCups?: string;
|
|
240
|
+
planContractTech?: string;
|
|
230
241
|
}
|
|
231
242
|
export interface SpecialitiesDoctorComplete {
|
|
232
243
|
habilitado: boolean;
|