|
@@ -10404,6 +10404,12 @@ function printYjReq(patientId, times, type, printType) {
|
|
|
if (i > 0) {
|
|
|
LODOP.NewPageA();
|
|
|
}
|
|
|
+ JsBarcode("#JcBarcode", obj.reqNo, {
|
|
|
+ lineColor: '#333', //线条颜色
|
|
|
+ width: 1, //线宽
|
|
|
+ height: 26, //条码高度
|
|
|
+ displayValue: false, //是否显示文字信息
|
|
|
+ });
|
|
|
$("#reqNoJcReq").text(obj.reqNo);
|
|
|
$("#jcReqItem").text(obj.groupName);
|
|
|
$("#jcReqRemark").text(obj.jyRemark);
|
|
@@ -10412,6 +10418,12 @@ function printYjReq(patientId, times, type, printType) {
|
|
|
} else if (obj.reqType == "2") {
|
|
|
var inspectStuff = (obj.inspectStuff == null || obj.inspectStuff == "null") ? "" : obj.inspectStuff;
|
|
|
jyContent += '<tr><td style="min-height: 30px;">' + obj.groupName + '</td><td>' + inspectStuff + '</td><td>' + obj.reqNo + '</td></tr>';
|
|
|
+ JsBarcode("#JyBarcode", obj.reqNo, {
|
|
|
+ lineColor: '#333', //线条颜色
|
|
|
+ width: 1, //线宽
|
|
|
+ height: 26, //条码高度
|
|
|
+ displayValue: false, //是否显示文字信息
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
if (jyContent != null && jyContent != "" && jyContent.length > 0) {
|