- Implemented debug information
- Started table for Fulfillment Plan
This commit is contained in:
@ -9,23 +9,29 @@
|
||||
<name>QueueUtils</name>
|
||||
<script><![CDATA[var QueueUtils = Class.create();
|
||||
QueueUtils.prototype = {
|
||||
/*
|
||||
* Do not defined LOG in this class. It will be overwritten due to it being an automatically added function by ProcessorUtils
|
||||
*
|
||||
*/
|
||||
|
||||
initialize: function() {
|
||||
},
|
||||
|
||||
writeToQueue: function(event, data){
|
||||
gs.info('writer');
|
||||
this.tester();
|
||||
new LogUtils().write("finished function",{ type: "debug", funcName: "writeToQueue" });
|
||||
this.LOG.debug("write to queue function","writeToQueue");
|
||||
},
|
||||
|
||||
tester: function(){
|
||||
new LogUtils().write("tester",{ type: "debug", funcName: "tester" });
|
||||
this.LOG.info("tester function", "tester");
|
||||
var fulfillmentPlanUtils = new FulfillmentPlanUtils();
|
||||
fulfillmentPlanUtils.tester();
|
||||
},
|
||||
|
||||
type: 'QueueUtils'
|
||||
};
|
||||
|
||||
new ProcessorUtils("x_355681_fa").wrapScriptInclude(QueueUtils.prototype);]]></script>
|
||||
new ProcessorUtils("x_355681_fa").wrapPrototype(QueueUtils.prototype);]]></script>
|
||||
<sys_class_name>sys_script_include</sys_class_name>
|
||||
<sys_created_by>admin</sys_created_by>
|
||||
<sys_created_on>2023-01-13 22:09:49</sys_created_on>
|
||||
|
||||
Reference in New Issue
Block a user