biz9-logic 4.0.25 → 4.0.26
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/biz9_config +1 -1
- package/index.js +1 -2
- package/main_test.js +0 -5
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -188,7 +188,6 @@ class Field{
|
|
|
188
188
|
if(!option){
|
|
189
189
|
option={get_value:true};
|
|
190
190
|
}
|
|
191
|
-
Log.w('option',option);
|
|
192
191
|
let item = {
|
|
193
192
|
date_create:new moment().toISOString(),
|
|
194
193
|
date_save:new moment().toISOString(),
|
|
@@ -369,7 +368,7 @@ class Review{
|
|
|
369
368
|
review.first_name="First Name "+ Number.get_id();
|
|
370
369
|
review.last_name="Last Name "+ Number.get_id();
|
|
371
370
|
review.position="Position "+ Number.get_id();
|
|
372
|
-
review.comment="My comment "+ Number.get_id();
|
|
371
|
+
review.comment="My comment "+ Number.get_id() + "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
|
|
373
372
|
review.city=city_list[Number.get_id(city_list.length-1)];
|
|
374
373
|
review.state=state_list[Number.get_id(state_list.length-1)];
|
|
375
374
|
return review;
|
package/main_test.js
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
const { DataItem,DataType } = require('biz9-logic');
|
|
2
|
-
console.log('aaaaaa');
|
|
3
|
-
console.log('aaaaaa');
|
|
4
|
-
console.log('aaaaaa');
|
|
5
|
-
console.log(DataType);
|
|
6
|
-
console.log('bbbbbbbb');
|
|
7
2
|
const get_template_test = () =>{
|
|
8
3
|
let template = DataItem.get_new_full_item(
|
|
9
4
|
DataItem.get_new(DataType.TEMPLATE,Number.get_id()),
|