@gct-paas/word 0.1.52-beta.7 → 0.1.52-beta.8
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.
|
@@ -332,9 +332,24 @@ export declare enum FIELD_TYPE {
|
|
|
332
332
|
* 物料批次(生产标识)
|
|
333
333
|
*/
|
|
334
334
|
PRODUCTION_IDENTIFIER = "production_identifier",
|
|
335
|
+
/**
|
|
336
|
+
* 对象
|
|
337
|
+
*/
|
|
335
338
|
OBJECT_TYPE = "object_type",
|
|
339
|
+
/**
|
|
340
|
+
* 物料消耗对象
|
|
341
|
+
*/
|
|
336
342
|
MATERIAL_CONSUME = "material_consume",
|
|
343
|
+
/**
|
|
344
|
+
* 数量
|
|
345
|
+
*/
|
|
337
346
|
QTY = "qty",
|
|
347
|
+
/**
|
|
348
|
+
* 消耗数量
|
|
349
|
+
*/
|
|
338
350
|
QTY_CONSUMED = "qty_consumed",
|
|
339
|
-
|
|
351
|
+
/**
|
|
352
|
+
* 需求数量
|
|
353
|
+
*/
|
|
354
|
+
QTY_REQUIRED = "qty_required"
|
|
340
355
|
}
|
|
@@ -24,4 +24,4 @@ export declare const F: {
|
|
|
24
24
|
};
|
|
25
25
|
export type AllocateFieldKey = (typeof F)[keyof typeof F];
|
|
26
26
|
/** runtimeRules:始终只读的信息字段 */
|
|
27
|
-
export declare const READONLY_INFO_FIELDS: readonly ["product_id_name_", "product_id_code_", "product_id_spec_", "stock_num_", "validity_"];
|
|
27
|
+
export declare const READONLY_INFO_FIELDS: readonly ["product_id_name_", "product_id_code_", "product_id_spec_", "production_identification_id_", "stock_num_", "validity_", "origin_warehouse_id_", "origin_location_id_"];
|