|
|
@@ -240,7 +240,7 @@ function searchFn() {
|
|
|
ctid: s.tid, shopname: s.shop, buyer_nick: s.ww, customer: s.customer, design: s.design, orderState: s.state, addwechat: s.addwechat,
|
|
|
date1: s.date1, date2: s.date2, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, isoldcus: s.isoldcus, apdate1: s.assigndate1, apdate2: s.assigndate2
|
|
|
, uploaddate1: s.uploaddate1, uploaddate2: s.uploaddate2, finishdate1: s.finishdate1, finishdate2: s.finishdate2, urgent: urgent, back: back, offlineSearch: offlineSearch, backReason: s.backreason, isNew: isNewSearch,
|
|
|
- overtime: s.overtime, deliverydate1: s.deliverydate1, deliverydate2: s.deliverydate2, spudata: s.spudata
|
|
|
+ overtime: s.overtime, deliverydate1: s.deliverydate1, deliverydate2: s.deliverydate2, spudata: s.spudata, otherMemo: s.otherMemo
|
|
|
}
|
|
|
grid.load(parmsObj);
|
|
|
|
|
|
@@ -318,7 +318,14 @@ function memoFn(eid) {
|
|
|
var rec = grid.getSelected();
|
|
|
var mm = rec.seller_memo;
|
|
|
if (mm != "") mm = mm.replace(/<br>/g, "\n");
|
|
|
- $("#txtMemo").val(mm);
|
|
|
+ $("#txtMemo").val(mm).attr("readonly", true);
|
|
|
+ $("#txtQnMemo").val("").show();
|
|
|
+
|
|
|
+ if (rec.IsSample > 0 || rec.ctid.indexOf("N_") > -1 || rec.seller_memo.indexOf("现货") > -1 || rec.seller_memo.indexOf("礼物") > -1) {
|
|
|
+ $("#txtQnMemo").hide();
|
|
|
+ $("#txtMemo").attr("readonly", false);
|
|
|
+ }
|
|
|
+
|
|
|
mini.get("memo_win").show();
|
|
|
|
|
|
mini.get("aMemoMsgGai").setChecked(false);
|
|
|
@@ -366,6 +373,7 @@ function saveMemoFn() {
|
|
|
var parms = new Object();
|
|
|
parms.ctid = edit_id;
|
|
|
parms.seller_memo = $("#txtMemo").val();
|
|
|
+ parms.qn_memo = $("#txtQnMemo").val();
|
|
|
if (_memo_msg == "") {
|
|
|
_memo_msg = 0;
|
|
|
}
|
|
|
@@ -980,7 +988,7 @@ $(function () {
|
|
|
var s = openPageData;
|
|
|
grid.load({
|
|
|
ctid: s.tid, shopname: s.shop, buyer_nick: s.ww, customer: s.customer, design: s.design, orderState: s.state,
|
|
|
- date1: s.date1, date2: s.date2, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, isoldcus: s.isoldcus, backReason: s.txtBackReason
|
|
|
+ date1: s.date1, date2: s.date2, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, isoldcus: s.isoldcus, backReason: s.txtBackReason, otherMemo: s.otherMemo
|
|
|
});
|
|
|
var form = new mini.Form("#ctl00_f_all");
|
|
|
if (form != undefined && form != null) {
|
|
|
@@ -1197,7 +1205,7 @@ function searchUrgencyFn() {
|
|
|
var s = data;
|
|
|
grid.load({
|
|
|
tid: s.tid, shopname: s.shop, buyer_nick: s.ww,
|
|
|
- date1: _startTime, date2: _endTime, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, urgency: 1, backReason: s.txtBackReason
|
|
|
+ date1: _startTime, date2: _endTime, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, urgency: 1, backReason: s.txtBackReason, otherMemo: s.otherMemo
|
|
|
});
|
|
|
}
|
|
|
|
|
|
@@ -1207,7 +1215,7 @@ function searchAfterSaleFn() {
|
|
|
var s = data;
|
|
|
grid.load({
|
|
|
tid: s.tid, shopname: s.shop, buyer_nick: s.ww,
|
|
|
- date1: _startTime, date2: _endTime, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, after: 1, backReason: s.txtBackReason
|
|
|
+ date1: _startTime, date2: _endTime, price1: s.price1, price2: s.price2, address: s.address, seller_memo: s.memo, after: 1, backReason: s.txtBackReason, otherMemo: s.otherMemo
|
|
|
});
|
|
|
}
|
|
|
|