我的任务是将两个 if 语句组合Js
成一个剪纸脚本。它是一个打印管理软件。我拥有我需要的一切,我相信下面的脚本。问题是将这两个 if 组合成一个我相信的陈述。我不熟悉 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 + "'.");
}
}