我的任务是将两个if语句组合Js成一个剪纸脚本.它是一个打印管理软件.我有我需要的一切我相信下面的脚本.问题是将这两个结合在一起我认为是一个陈述.我不熟悉Javascript,也不熟悉python.我希望在重新安排此脚本时提供一些帮助,如下所述.
目标:
如果他们打印10+页以上的作业,则仅执行成本中心弹出,否则只需将作业自动收取到公司不可计费(ADM-3900)帐户.如果作业超过50页,则将其从HP重定向到较大的复印机.在这种情况下,从test_printer3到Copier - Color.
/*
* Redirect large jobs without confirmation
*
* Users printing jobs larger than the defined number of pages have their jobs
* automatically redirected to another printer or virtual queue.
* This can be used to redirect large jobs from slower or high cost printers
* to more efficient or faster high volume printers.
*/
function printJobHook(inputs, actions) {
/*
* This print hook will need access to all job details
* so return if full job analysis is not yet complete.
* The only job details that are available before analysis
* are metadata such as username, printer name, and date.
*
* See reference documentation for full explanation.
*/
/*
* NOTE: The high-volume printer must be compatible with the source printer.
* i.e. use the same printer language like PCL or Postscript.
* If this is a virtual queue, all printers in the queue must use
* the same printer language.
*/
if (!inputs.job.isAnalysisComplete) {
// No job details yet so return.
return;
actions.job.chargeToPersonalAccount();
return;
if (inputs.job.totalPages < 10) {
// Charge to the firm non-bill account
actions.job.chargeToSharedAccount(ADM-3900);
}
// Account Selection will still show
}
var LIMIT = 5; // Redirect jobs over 5 pages.
var HIGH_VOL_PRINTER = "Copier - Color";
if (inputs.job.totalPages > LIMIT) {
/*
* Specify actions.job.bypassReleaseQueue() if you wish to bypass the release queue
* on the original printer the job was sent to. (Otherwise if held at the target,
* the job will need to be released from two different queues before it will print.)
*/
actions.job.bypassReleaseQueue();
/*
* Job is larger than our page limit, so redirect to high-volume printer,
* and send a message to the user.
* Specify "allowHoldAtTarget":true to allow the job to be held at the hold/release
* queue for the high-volume printer, if one is defined.
*/
actions.job.redirect(HIGH_VOL_PRINTER, {allowHoldAtTarget: true});
// Notify the user that the job was automatically redirected.
actions.client.sendMessage(
"The print job was over " + LIMIT + " pages and was sent to "
+ " printer: " + HIGH_VOL_PRINTER + ".");
// Record that the job was redirected in the application log.
actions.log.info("Large job redirected from printer '" + inputs.job.printerName
+ "' to printer '" + HIGH_VOL_PRINTER + "'.");
}
}
Run Code Online (Sandbox Code Playgroud)
我相信这就是您正在寻找的东西,但还不完全清楚。在不知道所有逻辑分支的情况下很难合并条件。
/*
* Redirect large jobs without confirmation
*
* Users printing jobs larger than the defined number of pages have their jobs
* automatically redirected to another printer or virtual queue.
* This can be used to redirect large jobs from slower or high cost printers
* to more efficient or faster high volume printers.
*/
function printJobHook(inputs, actions) {
/*
* This print hook will need access to all job details
* so return if full job analysis is not yet complete.
* The only job details that are available before analysis
* are metadata such as username, printer name, and date.
*
* See reference documentation for full explanation.
*/
/*
* NOTE: The high-volume printer must be compatible with the source printer.
* i.e. use the same printer language like PCL or Postscript.
* If this is a virtual queue, all printers in the queue must use
* the same printer language.
*/
var LIMIT = 5; // Redirect jobs over 5 pages.
var HIGH_VOL_PRINTER = "Copier - Color";
if (!inputs.job.isAnalysisComplete) {
return;// No job details yet so return.
}
//Charge jobs with less than 10 pages to non-bill account
if (inputs.job.totalPages < 10) {
// Charge to the firm non-bill account
actions.job.chargeToSharedAccount(ADM-3900);
}
else //Charge jobs with more than 10 pages to the personal account
{
actions.job.chargeToPersonalAccount();
if (inputs.job.totalPages > LIMIT) {
/*
* Specify actions.job.bypassReleaseQueue() if you wish to bypass the release queue
* on the original printer the job was sent to. (Otherwise if held at the target,
* the job will need to be released from two different queues before it will print.)
*/
actions.job.bypassReleaseQueue();
/*
* Job is larger than our page limit, so redirect to high-volume printer,
* and send a message to the user.
* Specify "allowHoldAtTarget":true to allow the job to be held at the hold/release
* queue for the high-volume printer, if one is defined.
*/
actions.job.redirect(HIGH_VOL_PRINTER, {allowHoldAtTarget: true});
// Notify the user that the job was automatically redirected.
actions.client.sendMessage(
"The print job was over " + LIMIT + " pages and was sent to "
+ " printer: " + HIGH_VOL_PRINTER + ".");
// Record that the job was redirected in the application log.
actions.log.info("Large job redirected from printer '" + inputs.job.printerName
+ "' to printer '" + HIGH_VOL_PRINTER + "'.");
}
}
return
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
286 次 |
| 最近记录: |